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.Builderattribute(String attribute)The name of an attribute to use as a filter.Filter.Builderoperation(String operation)The type of search (For example, eq, geq, leq)Filter.Buildervalue(String value)Value of the filter.-
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
-
attribute
Filter.Builder attribute(String attribute)
The name of an attribute to use as a filter.
- Parameters:
attribute- The name of an attribute to use as a filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operation
Filter.Builder operation(String operation)
The type of search (For example, eq, geq, leq)
- Parameters:
operation- The type of search (For example, eq, geq, leq)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Filter.Builder value(String value)
Value of the filter.
- Parameters:
value- Value of the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-