Interface CommandParameterValueCondition.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<CommandParameterValueCondition.Builder,,CommandParameterValueCondition> SdkBuilder<CommandParameterValueCondition.Builder,,CommandParameterValueCondition> SdkPojo
- Enclosing class:
CommandParameterValueCondition
@Mutable
@NotThreadSafe
public static interface CommandParameterValueCondition.Builder
extends SdkPojo, CopyableBuilder<CommandParameterValueCondition.Builder,CommandParameterValueCondition>
-
Method Summary
Modifier and TypeMethodDescriptioncomparisonOperator(String comparisonOperator) The comparison operator for the command parameter.comparisonOperator(CommandParameterValueComparisonOperator comparisonOperator) The comparison operator for the command parameter.The comparison operand for the command parameter.The comparison operand for the command parameter.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
comparisonOperator
The comparison operator for the command parameter.
IN_RANGE, and NOT_IN_RANGE operators include boundary values.
- Parameters:
comparisonOperator- The comparison operator for the command parameter.IN_RANGE, and NOT_IN_RANGE operators include boundary values.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
comparisonOperator
CommandParameterValueCondition.Builder comparisonOperator(CommandParameterValueComparisonOperator comparisonOperator) The comparison operator for the command parameter.
IN_RANGE, and NOT_IN_RANGE operators include boundary values.
- Parameters:
comparisonOperator- The comparison operator for the command parameter.IN_RANGE, and NOT_IN_RANGE operators include boundary values.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
operand
The comparison operand for the command parameter.
- Parameters:
operand- The comparison operand for the command parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operand
default CommandParameterValueCondition.Builder operand(Consumer<CommandParameterValueComparisonOperand.Builder> operand) The comparison operand for the command parameter.
This is a convenience method that creates an instance of theCommandParameterValueComparisonOperand.Builderavoiding the need to create one manually viaCommandParameterValueComparisonOperand.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooperand(CommandParameterValueComparisonOperand).- Parameters:
operand- a consumer that will call methods onCommandParameterValueComparisonOperand.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-