Interface CfnCommand.CommandParameterValueComparisonOperandProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCommand.CommandParameterValueComparisonOperandProperty.Jsii$Proxy
- Enclosing class:
CfnCommand
@Stability(Stable)
public static interface CfnCommand.CommandParameterValueComparisonOperandProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iot.*;
CommandParameterValueComparisonOperandProperty commandParameterValueComparisonOperandProperty = CommandParameterValueComparisonOperandProperty.builder()
.number("number")
.numberRange(CommandParameterValueNumberRangeProperty.builder()
.max("max")
.min("min")
.build())
.numbers(List.of("numbers"))
.string("string")
.strings(List.of("strings"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnCommand.CommandParameterValueComparisonOperandProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault ObjectReturns union: eitherIResolvableorCfnCommand.CommandParameterValueNumberRangePropertydefault StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNumber
- See Also:
-
getNumberRange
Returns union: eitherIResolvableorCfnCommand.CommandParameterValueNumberRangeProperty- See Also:
-
getNumbers
- See Also:
-
getString
- See Also:
-
getStrings
- See Also:
-
builder
@Stability(Stable) static CfnCommand.CommandParameterValueComparisonOperandProperty.Builder builder()
-