Interface CfnDashboard.AnalysisDefaultsProperty

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

@Stability(Stable) public static interface CfnDashboard.AnalysisDefaultsProperty extends software.amazon.jsii.JsiiSerializable
The configuration for default analysis settings.

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.*;
 AnalysisDefaultsProperty analysisDefaultsProperty = AnalysisDefaultsProperty.builder()
         .defaultNewSheetConfiguration(DefaultNewSheetConfigurationProperty.builder()
                 .interactiveLayoutConfiguration(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())
                 .paginatedLayoutConfiguration(DefaultPaginatedLayoutConfigurationProperty.builder()
                         .sectionBased(DefaultSectionBasedLayoutConfigurationProperty.builder()
                                 .canvasSizeOptions(SectionBasedLayoutCanvasSizeOptionsProperty.builder()
                                         .paperCanvasSizeOptions(SectionBasedLayoutPaperCanvasSizeOptionsProperty.builder()
                                                 .paperMargin(SpacingProperty.builder()
                                                         .bottom("bottom")
                                                         .left("left")
                                                         .right("right")
                                                         .top("top")
                                                         .build())
                                                 .paperOrientation("paperOrientation")
                                                 .paperSize("paperSize")
                                                 .build())
                                         .build())
                                 .build())
                         .build())
                 .sheetContentType("sheetContentType")
                 .build())
         .build();
 

See Also: