Interface StringFilterExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StringFilterExpression.Builder,StringFilterExpression>,SdkBuilder<StringFilterExpression.Builder,StringFilterExpression>,SdkPojo
- Enclosing class:
- StringFilterExpression
public static interface StringFilterExpression.Builder extends SdkPojo, CopyableBuilder<StringFilterExpression.Builder,StringFilterExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringFilterExpression.Buildername(String name)The field name to search.StringFilterExpression.Builderoperator(String operator)The type of comparison to use for this search.StringFilterExpression.Builderoperator(ComparisonOperator operator)The type of comparison to use for this search.StringFilterExpression.Buildervalue(String value)The string to search for.-
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
-
name
StringFilterExpression.Builder name(String name)
The field name to search.
- Parameters:
name- The field name to search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
StringFilterExpression.Builder operator(String operator)
The type of comparison to use for this search.
- Parameters:
operator- The type of comparison to use for this search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator,ComparisonOperator
-
operator
StringFilterExpression.Builder operator(ComparisonOperator operator)
The type of comparison to use for this search.
- Parameters:
operator- The type of comparison to use for this search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComparisonOperator,ComparisonOperator
-
value
StringFilterExpression.Builder value(String value)
The string to search for.
- Parameters:
value- The string to search for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-