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();