Interface StringCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StringCondition.Builder,StringCondition>,SdkBuilder<StringCondition.Builder,StringCondition>,SdkPojo
- Enclosing class:
- StringCondition
public static interface StringCondition.Builder extends SdkPojo, CopyableBuilder<StringCondition.Builder,StringCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringCondition.BuildercomparisonType(String comparisonType)The type of comparison to be made when evaluating the string condition.StringCondition.BuildercomparisonType(StringComparisonType comparisonType)The type of comparison to be made when evaluating the string condition.StringCondition.BuilderfieldName(String fieldName)The name of the field in the string condition.StringCondition.Buildervalue(String value)The value of the string.-
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, sdkFields
-
-
-
-
Method Detail
-
fieldName
StringCondition.Builder fieldName(String fieldName)
The name of the field in the string condition.
- Parameters:
fieldName- The name of the field in the string condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
StringCondition.Builder value(String value)
The value of the string.
- Parameters:
value- The value of the string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comparisonType
StringCondition.Builder comparisonType(String comparisonType)
The type of comparison to be made when evaluating the string condition.
- Parameters:
comparisonType- The type of comparison to be made when evaluating the string condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StringComparisonType,StringComparisonType
-
comparisonType
StringCondition.Builder comparisonType(StringComparisonType comparisonType)
The type of comparison to be made when evaluating the string condition.
- Parameters:
comparisonType- The type of comparison to be made when evaluating the string condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StringComparisonType,StringComparisonType
-
-