Interface ImportFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImportFilter.Builder,ImportFilter>,SdkBuilder<ImportFilter.Builder,ImportFilter>,SdkPojo
- Enclosing class:
- ImportFilter
public static interface ImportFilter.Builder extends SdkPojo, CopyableBuilder<ImportFilter.Builder,ImportFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportFilter.Buildername(String name)The name of the field to use for filtering.ImportFilter.Buildername(ImportFilterName name)The name of the field to use for filtering.ImportFilter.Builderoperator(String operator)The operator to use for the filter.ImportFilter.Builderoperator(ImportFilterOperator operator)The operator to use for the filter.ImportFilter.Buildervalues(String... values)The values to use to filter the response.ImportFilter.Buildervalues(Collection<String> values)The values 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
ImportFilter.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:
ImportFilterName,ImportFilterName
-
name
ImportFilter.Builder name(ImportFilterName 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:
ImportFilterName,ImportFilterName
-
values
ImportFilter.Builder values(Collection<String> values)
The values to use to filter the response. The values must be
Bot,BotLocale, orCustomVocabulary.- Parameters:
values- The values to use to filter the response. The values must beBot,BotLocale, orCustomVocabulary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ImportFilter.Builder values(String... values)
The values to use to filter the response. The values must be
Bot,BotLocale, orCustomVocabulary.- Parameters:
values- The values to use to filter the response. The values must beBot,BotLocale, orCustomVocabulary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
ImportFilter.Builder operator(String operator)
The operator to use for the filter. Specify EQ when the
ListImportsoperation should return only resource types that equal the specified value. Specify CO when theListImportsoperation should return resource types that contain the specified value.- Parameters:
operator- The operator to use for the filter. Specify EQ when theListImportsoperation should return only resource types that equal the specified value. Specify CO when theListImportsoperation should return resource types that contain the specified value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportFilterOperator,ImportFilterOperator
-
operator
ImportFilter.Builder operator(ImportFilterOperator operator)
The operator to use for the filter. Specify EQ when the
ListImportsoperation should return only resource types that equal the specified value. Specify CO when theListImportsoperation should return resource types that contain the specified value.- Parameters:
operator- The operator to use for the filter. Specify EQ when theListImportsoperation should return only resource types that equal the specified value. Specify CO when theListImportsoperation should return resource types that contain the specified value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportFilterOperator,ImportFilterOperator
-
-