Interface Filter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Filter.Builder,Filter>,SdkBuilder<Filter.Builder,Filter>,SdkPojo
- Enclosing class:
- Filter
public static interface Filter.Builder extends SdkPojo, CopyableBuilder<Filter.Builder,Filter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Filter.BuildercomparisonOperator(String comparisonOperator)The operator used to compare the fields.Filter.Builderkey(String key)A key that can be used to sort results.Filter.Buildervalues(String... values)The values of the key.Filter.Buildervalues(Collection<String> values)The values of the key.-
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
-
key
Filter.Builder key(String key)
A key that can be used to sort results.
- Parameters:
key- A key that can be used to sort results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(Collection<String> values)
The values of the key.
- Parameters:
values- The values of the key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
Filter.Builder values(String... values)
The values of the key.
- Parameters:
values- The values of the key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comparisonOperator
Filter.Builder comparisonOperator(String comparisonOperator)
The operator used to compare the fields.
- Parameters:
comparisonOperator- The operator used to compare the fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-