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.Buildername(String name)The name of the filter.Filter.Builderoperator(String operator)The operator for the filter.Filter.Builderoperator(FilterOperator operator)The operator for the filter.Filter.Buildervalue(String value)The filter values.-
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
Filter.Builder name(String name)
The name of the filter. Filter names are case-sensitive.
- Parameters:
name- The name of the filter. Filter names are case-sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Filter.Builder value(String value)
The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values
- Parameters:
value- The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
Filter.Builder operator(String operator)
The operator for the filter.
- Parameters:
operator- The operator for the filter.- 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 for the filter.
- Parameters:
operator- The operator for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FilterOperator,FilterOperator
-
-