Interface FilterDropDownControl.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterDropDownControl.Builder,FilterDropDownControl>,SdkBuilder<FilterDropDownControl.Builder,FilterDropDownControl>,SdkPojo
- Enclosing class:
- FilterDropDownControl
public static interface FilterDropDownControl.Builder extends SdkPojo, CopyableBuilder<FilterDropDownControl.Builder,FilterDropDownControl>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FilterDropDownControl.BuildercascadingControlConfiguration(Consumer<CascadingControlConfiguration.Builder> cascadingControlConfiguration)The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.FilterDropDownControl.BuildercascadingControlConfiguration(CascadingControlConfiguration cascadingControlConfiguration)The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.default FilterDropDownControl.BuilderdisplayOptions(Consumer<DropDownControlDisplayOptions.Builder> displayOptions)The display options of theFilterDropDownControl.FilterDropDownControl.BuilderdisplayOptions(DropDownControlDisplayOptions displayOptions)The display options of theFilterDropDownControl.FilterDropDownControl.BuilderfilterControlId(String filterControlId)The ID of theFilterDropDownControl.default FilterDropDownControl.BuilderselectableValues(Consumer<FilterSelectableValues.Builder> selectableValues)A list of selectable values that are used in a control.FilterDropDownControl.BuilderselectableValues(FilterSelectableValues selectableValues)A list of selectable values that are used in a control.FilterDropDownControl.BuildersourceFilterId(String sourceFilterId)The source filter ID of theFilterDropDownControl.FilterDropDownControl.Buildertitle(String title)The title of theFilterDropDownControl.FilterDropDownControl.Buildertype(String type)The type of theFilterDropDownControl.FilterDropDownControl.Buildertype(SheetControlListType type)The type of theFilterDropDownControl.-
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
-
filterControlId
FilterDropDownControl.Builder filterControlId(String filterControlId)
The ID of the
FilterDropDownControl.- Parameters:
filterControlId- The ID of theFilterDropDownControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
FilterDropDownControl.Builder title(String title)
The title of the
FilterDropDownControl.- Parameters:
title- The title of theFilterDropDownControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceFilterId
FilterDropDownControl.Builder sourceFilterId(String sourceFilterId)
The source filter ID of the
FilterDropDownControl.- Parameters:
sourceFilterId- The source filter ID of theFilterDropDownControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayOptions
FilterDropDownControl.Builder displayOptions(DropDownControlDisplayOptions displayOptions)
The display options of the
FilterDropDownControl.- Parameters:
displayOptions- The display options of theFilterDropDownControl.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayOptions
default FilterDropDownControl.Builder displayOptions(Consumer<DropDownControlDisplayOptions.Builder> displayOptions)
The display options of the
This is a convenience method that creates an instance of theFilterDropDownControl.DropDownControlDisplayOptions.Builderavoiding the need to create one manually viaDropDownControlDisplayOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todisplayOptions(DropDownControlDisplayOptions).- Parameters:
displayOptions- a consumer that will call methods onDropDownControlDisplayOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayOptions(DropDownControlDisplayOptions)
-
type
FilterDropDownControl.Builder type(String type)
The type of the
FilterDropDownControl. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from a dropdown menu. -
SINGLE_SELECT: The user can select a single entry from a dropdown menu.
- Parameters:
type- The type of theFilterDropDownControl. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from a dropdown menu. -
SINGLE_SELECT: The user can select a single entry from a dropdown menu.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlListType,SheetControlListType
-
-
type
FilterDropDownControl.Builder type(SheetControlListType type)
The type of the
FilterDropDownControl. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from a dropdown menu. -
SINGLE_SELECT: The user can select a single entry from a dropdown menu.
- Parameters:
type- The type of theFilterDropDownControl. Choose one of the following options:-
MULTI_SELECT: The user can select multiple entries from a dropdown menu. -
SINGLE_SELECT: The user can select a single entry from a dropdown menu.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SheetControlListType,SheetControlListType
-
-
selectableValues
FilterDropDownControl.Builder selectableValues(FilterSelectableValues selectableValues)
A list of selectable values that are used in a control.
- Parameters:
selectableValues- A list of selectable values that are used in a control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectableValues
default FilterDropDownControl.Builder selectableValues(Consumer<FilterSelectableValues.Builder> selectableValues)
A list of selectable values that are used in a control.
This is a convenience method that creates an instance of theFilterSelectableValues.Builderavoiding the need to create one manually viaFilterSelectableValues.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toselectableValues(FilterSelectableValues).- Parameters:
selectableValues- a consumer that will call methods onFilterSelectableValues.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
selectableValues(FilterSelectableValues)
-
cascadingControlConfiguration
FilterDropDownControl.Builder cascadingControlConfiguration(CascadingControlConfiguration cascadingControlConfiguration)
The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
- Parameters:
cascadingControlConfiguration- The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cascadingControlConfiguration
default FilterDropDownControl.Builder cascadingControlConfiguration(Consumer<CascadingControlConfiguration.Builder> cascadingControlConfiguration)
The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
This is a convenience method that creates an instance of theCascadingControlConfiguration.Builderavoiding the need to create one manually viaCascadingControlConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocascadingControlConfiguration(CascadingControlConfiguration).- Parameters:
cascadingControlConfiguration- a consumer that will call methods onCascadingControlConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
cascadingControlConfiguration(CascadingControlConfiguration)
-
-