Interface SlotFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SlotFilter.Builder,SlotFilter>,SdkBuilder<SlotFilter.Builder,SlotFilter>,SdkPojo
- Enclosing class:
- SlotFilter
public static interface SlotFilter.Builder extends SdkPojo, CopyableBuilder<SlotFilter.Builder,SlotFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SlotFilter.Buildername(String name)The name of the field to use for filtering.SlotFilter.Buildername(SlotFilterName name)The name of the field to use for filtering.SlotFilter.Builderoperator(String operator)The operator to use for the filter.SlotFilter.Builderoperator(SlotFilterOperator operator)The operator to use for the filter.SlotFilter.Buildervalues(String... values)The value to use to filter the response.SlotFilter.Buildervalues(Collection<String> values)The value to use to filter the response.-
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
SlotFilter.Builder name(String name)
The name of the field to use for filtering.
- Parameters:
name- The name of the field to use for filtering.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SlotFilterName,SlotFilterName
-
name
SlotFilter.Builder name(SlotFilterName name)
The name of the field to use for filtering.
- Parameters:
name- The name of the field to use for filtering.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SlotFilterName,SlotFilterName
-
values
SlotFilter.Builder values(Collection<String> values)
The value to use to filter the response.
- Parameters:
values- The value to use to filter the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
SlotFilter.Builder values(String... values)
The value to use to filter the response.
- Parameters:
values- The value to use to filter the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
SlotFilter.Builder operator(String operator)
The operator to use for the filter. Specify
EQwhen theListSlotsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListSlotsoperation should return aliases that contain the specified value.- Parameters:
operator- The operator to use for the filter. SpecifyEQwhen theListSlotsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListSlotsoperation should return aliases that contain the specified value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SlotFilterOperator,SlotFilterOperator
-
operator
SlotFilter.Builder operator(SlotFilterOperator operator)
The operator to use for the filter. Specify
EQwhen theListSlotsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListSlotsoperation should return aliases that contain the specified value.- Parameters:
operator- The operator to use for the filter. SpecifyEQwhen theListSlotsoperation should return only aliases that equal the specified value. SpecifyCOwhen theListSlotsoperation should return aliases that contain the specified value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SlotFilterOperator,SlotFilterOperator
-
-