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.Builderfield(String field)The field on which to filter.Filter.Builderfield(FilterField field)The field on which to filter.Filter.Builderoperator(String operator)The operator to use for comparing the field’s value with the provided value.Filter.Builderoperator(FilterOperator operator)The operator to use for comparing the field’s value with the provided value.Filter.Buildervalue(String value)The desired field value on which to 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
field
Filter.Builder field(String field)
The field on which to filter.
- Parameters:
field- The field on which to filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterField,FilterField
-
field
Filter.Builder field(FilterField field)
The field on which to filter.
- Parameters:
field- The field on which to filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterField,FilterField
-
operator
Filter.Builder operator(String operator)
The operator to use for comparing the field’s value with the provided value.
- Parameters:
operator- The operator to use for comparing the field’s value with the provided value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterOperator,FilterOperator
-
operator
Filter.Builder operator(FilterOperator operator)
The operator to use for comparing the field’s value with the provided value.
- Parameters:
operator- The operator to use for comparing the field’s value with the provided value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterOperator,FilterOperator
-
value
Filter.Builder value(String value)
The desired field value on which to filter.
- Parameters:
value- The desired field value on which to filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-