Interface BotLocaleFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BotLocaleFilter.Builder,BotLocaleFilter>,SdkBuilder<BotLocaleFilter.Builder,BotLocaleFilter>,SdkPojo
- Enclosing class:
- BotLocaleFilter
public static interface BotLocaleFilter.Builder extends SdkPojo, CopyableBuilder<BotLocaleFilter.Builder,BotLocaleFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BotLocaleFilter.Buildername(String name)The name of the field to filter the list of bots.BotLocaleFilter.Buildername(BotLocaleFilterName name)The name of the field to filter the list of bots.BotLocaleFilter.Builderoperator(String operator)The operator to use for the filter.BotLocaleFilter.Builderoperator(BotLocaleFilterOperator operator)The operator to use for the filter.BotLocaleFilter.Buildervalues(String... values)The value to use for filtering the list of bots.BotLocaleFilter.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
BotLocaleFilter.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:
BotLocaleFilterName,BotLocaleFilterName
-
name
BotLocaleFilter.Builder name(BotLocaleFilterName 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:
BotLocaleFilterName,BotLocaleFilterName
-
values
BotLocaleFilter.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
BotLocaleFilter.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
BotLocaleFilter.Builder operator(String operator)
The operator to use for the filter. Specify
EQwhen theListBotLocalesoperation should return only aliases that equal the specified value. SpecifyCOwhen theListBotLocalesoperation should return aliases that contain the specified value.- Parameters:
operator- The operator to use for the filter. SpecifyEQwhen theListBotLocalesoperation should return only aliases that equal the specified value. SpecifyCOwhen theListBotLocalesoperation 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:
BotLocaleFilterOperator,BotLocaleFilterOperator
-
operator
BotLocaleFilter.Builder operator(BotLocaleFilterOperator operator)
The operator to use for the filter. Specify
EQwhen theListBotLocalesoperation should return only aliases that equal the specified value. SpecifyCOwhen theListBotLocalesoperation should return aliases that contain the specified value.- Parameters:
operator- The operator to use for the filter. SpecifyEQwhen theListBotLocalesoperation should return only aliases that equal the specified value. SpecifyCOwhen theListBotLocalesoperation 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:
BotLocaleFilterOperator,BotLocaleFilterOperator
-
-