Interface Condition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Condition.Builder,Condition>,SdkBuilder<Condition.Builder,Condition>,SdkPojo
- Enclosing class:
- Condition
public static interface Condition.Builder extends SdkPojo, CopyableBuilder<Condition.Builder,Condition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Condition.Builderfield(String field)Indicates the field in the metric.Condition.Builderoperator(String operator)Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.Condition.Builderoperator(ConditionOperatorType operator)Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.Condition.Buildervalue(String value)Indicates the value or data against which a condition is evaluated.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
field
Condition.Builder field(String field)
Indicates the field in the metric.
- Parameters:
field- Indicates the field in the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
Condition.Builder operator(String operator)
Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.
- Parameters:
operator- Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConditionOperatorType,ConditionOperatorType
-
operator
Condition.Builder operator(ConditionOperatorType operator)
Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.
- Parameters:
operator- Indicates the type of operator or comparison to be used when evaluating a condition against the specified field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConditionOperatorType,ConditionOperatorType
-
value
Condition.Builder value(String value)
Indicates the value or data against which a condition is evaluated.
- Parameters:
value- Indicates the value or data against which a condition is evaluated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-