Interface CfnAnalysis.GridLayoutCanvasSizeOptionsProperty

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

@Stability(Stable) public static interface CfnAnalysis.GridLayoutCanvasSizeOptionsProperty extends software.amazon.jsii.JsiiSerializable
Configuration options for the canvas of a grid layout.

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.*;
 GridLayoutCanvasSizeOptionsProperty gridLayoutCanvasSizeOptionsProperty = GridLayoutCanvasSizeOptionsProperty.builder()
         .screenCanvasSizeOptions(GridLayoutScreenCanvasSizeOptionsProperty.builder()
                 .resizeOption("resizeOption")
                 // the properties below are optional
                 .optimizedViewPortWidth("optimizedViewPortWidth")
                 .build())
         .build();
 

See Also: