Interface CfnTemplate.DefaultInteractiveLayoutConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DefaultInteractiveLayoutConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnTemplate.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. -
getGrid
The options that determine the default settings for a grid layout configuration. -
builder
@Stability(Stable) static CfnTemplate.DefaultInteractiveLayoutConfigurationProperty.Builder builder()
-