Interface CategoryDrillDownFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CategoryDrillDownFilter.Builder,CategoryDrillDownFilter>,SdkBuilder<CategoryDrillDownFilter.Builder,CategoryDrillDownFilter>,SdkPojo
- Enclosing class:
- CategoryDrillDownFilter
@Mutable @NotThreadSafe public static interface CategoryDrillDownFilter.Builder extends SdkPojo, CopyableBuilder<CategoryDrillDownFilter.Builder,CategoryDrillDownFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CategoryDrillDownFilter.BuildercategoryValues(String... categoryValues)A list of the string inputs that are the values of the category drill down filter.CategoryDrillDownFilter.BuildercategoryValues(Collection<String> categoryValues)A list of the string inputs that are the values of the category drill down filter.default CategoryDrillDownFilter.Buildercolumn(Consumer<ColumnIdentifier.Builder> column)The column that the filter is applied to.CategoryDrillDownFilter.Buildercolumn(ColumnIdentifier column)The column that the filter is applied to.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
column
CategoryDrillDownFilter.Builder column(ColumnIdentifier column)
The column that the filter is applied to.
- Parameters:
column- The column that the filter is applied to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default CategoryDrillDownFilter.Builder column(Consumer<ColumnIdentifier.Builder> column)
The column that the filter is applied to.
This is a convenience method that creates an instance of theColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumn(ColumnIdentifier).- Parameters:
column- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
column(ColumnIdentifier)
-
categoryValues
CategoryDrillDownFilter.Builder categoryValues(Collection<String> categoryValues)
A list of the string inputs that are the values of the category drill down filter.
- Parameters:
categoryValues- A list of the string inputs that are the values of the category drill down filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoryValues
CategoryDrillDownFilter.Builder categoryValues(String... categoryValues)
A list of the string inputs that are the values of the category drill down filter.
- Parameters:
categoryValues- A list of the string inputs that are the values of the category drill down filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-