Interface ExportFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportFilter.Builder,ExportFilter>,SdkBuilder<ExportFilter.Builder,ExportFilter>,SdkPojo
- Enclosing class:
- ExportFilter
public static interface ExportFilter.Builder extends SdkPojo, CopyableBuilder<ExportFilter.Builder,ExportFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportFilter.Buildername(String name)The name of the field to use for filtering.ExportFilter.Buildername(ExportFilterName name)The name of the field to use for filtering.ExportFilter.Builderoperator(String operator)The operator to use for the filter.ExportFilter.Builderoperator(ExportFilterOperator operator)The operator to use for the filter.ExportFilter.Buildervalues(String... values)The values to use to filter the response.ExportFilter.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
ExportFilter.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:
ExportFilterName,ExportFilterName
-
name
ExportFilter.Builder name(ExportFilterName 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:
ExportFilterName,ExportFilterName
-
values
ExportFilter.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
ExportFilter.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
ExportFilter.Builder operator(String operator)
The operator to use for the filter. Specify EQ when the
ListExportsoperation should return only resource types that equal the specified value. Specify CO when theListExportsoperation should return resource types that contain the specified value.- Parameters:
operator- The operator to use for the filter. Specify EQ when theListExportsoperation should return only resource types that equal the specified value. Specify CO when theListExportsoperation 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:
ExportFilterOperator,ExportFilterOperator
-
operator
ExportFilter.Builder operator(ExportFilterOperator operator)
The operator to use for the filter. Specify EQ when the
ListExportsoperation should return only resource types that equal the specified value. Specify CO when theListExportsoperation should return resource types that contain the specified value.- Parameters:
operator- The operator to use for the filter. Specify EQ when theListExportsoperation should return only resource types that equal the specified value. Specify CO when theListExportsoperation 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:
ExportFilterOperator,ExportFilterOperator
-
-