Interface CfnDashboard.ListControlDisplayOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.ListControlDisplayOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.ListControlDisplayOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The display options of a control.
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.*; ListControlDisplayOptionsProperty listControlDisplayOptionsProperty = ListControlDisplayOptionsProperty.builder() .searchOptions(ListControlSearchOptionsProperty.builder() .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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.ListControlDisplayOptionsProperty
static final class
An implementation forCfnDashboard.ListControlDisplayOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSearchOptions
The configuration of the search options in a list control. -
getSelectAllOptions
The configuration of theSelect all
options in a list control. -
getTitleOptions
The options to configure the title visibility, name, and font size. -
builder
-