Interface CfnDashboard.DefaultFilterDropDownControlOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DefaultFilterDropDownControlOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DefaultFilterDropDownControlOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The default options that correspond to the
Dropdown
filter control type.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; DefaultFilterDropDownControlOptionsProperty defaultFilterDropDownControlOptionsProperty = DefaultFilterDropDownControlOptionsProperty.builder() .commitMode("commitMode") .displayOptions(DropDownControlDisplayOptionsProperty.builder() .infoIconLabelOptions(SheetControlInfoIconLabelOptionsProperty.builder() .infoIconText("infoIconText") .visibility("visibility") .build()) .selectAllOptions(ListControlSelectAllOptionsProperty.builder() .visibility("visibility") .build()) .titleOptions(LabelOptionsProperty.builder() .customLabel("customLabel") .fontConfiguration(FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build()) .visibility("visibility") .build()) .build()) .selectableValues(FilterSelectableValuesProperty.builder() .values(List.of("values")) .build()) .type("type") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.DefaultFilterDropDownControlOptionsProperty
static final class
An implementation forCfnDashboard.DefaultFilterDropDownControlOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The visibility configuration of the Apply button on aFilterDropDownControl
.default Object
The display options of a control.default Object
A list of selectable values that are used in a control.default String
getType()
The type of theFilterDropDownControl
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCommitMode
The visibility configuration of the Apply button on aFilterDropDownControl
.- See Also:
-
getDisplayOptions
The display options of a control.- See Also:
-
getSelectableValues
A list of selectable values that are used in a control.- See Also:
-
getType
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.
- See Also:
-
builder
@Stability(Stable) static CfnDashboard.DefaultFilterDropDownControlOptionsProperty.Builder builder()
-