Interface CfnDashboard.DefaultInteractiveLayoutConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DefaultInteractiveLayoutConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DefaultInteractiveLayoutConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the default settings for interactive layout configuration.
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.*; DefaultInteractiveLayoutConfigurationProperty defaultInteractiveLayoutConfigurationProperty = DefaultInteractiveLayoutConfigurationProperty.builder() .freeForm(DefaultFreeFormLayoutConfigurationProperty.builder() .canvasSizeOptions(FreeFormLayoutCanvasSizeOptionsProperty.builder() .screenCanvasSizeOptions(FreeFormLayoutScreenCanvasSizeOptionsProperty.builder() .optimizedViewPortWidth("optimizedViewPortWidth") .build()) .build()) .build()) .grid(DefaultGridLayoutConfigurationProperty.builder() .canvasSizeOptions(GridLayoutCanvasSizeOptionsProperty.builder() .screenCanvasSizeOptions(GridLayoutScreenCanvasSizeOptionsProperty.builder() .resizeOption("resizeOption") // the properties below are optional .optimizedViewPortWidth("optimizedViewPortWidth") .build()) .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDashboard.DefaultInteractiveLayoutConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFreeForm
The options that determine the default settings of a free-form layout configuration.- See Also:
-
getGrid
The options that determine the default settings for a grid layout configuration.- See Also:
-
builder
@Stability(Stable) static CfnDashboard.DefaultInteractiveLayoutConfigurationProperty.Builder builder()
-