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