Interface CfnAnalysis.DefaultGridLayoutConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.DefaultGridLayoutConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.DefaultGridLayoutConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The options that determine the default settings for a grid 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.*;
 DefaultGridLayoutConfigurationProperty defaultGridLayoutConfigurationProperty = DefaultGridLayoutConfigurationProperty.builder()
         .canvasSizeOptions(GridLayoutCanvasSizeOptionsProperty.builder()
                 .screenCanvasSizeOptions(GridLayoutScreenCanvasSizeOptionsProperty.builder()
                         .resizeOption("resizeOption")
                         // the properties below are optional
                         .optimizedViewPortWidth("optimizedViewPortWidth")
                         .build())
                 .build())
         .build();
 

See Also: