Interface CfnAnalysis.DefaultNewSheetConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.DefaultNewSheetConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.DefaultNewSheetConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for default new sheet 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.*;
DefaultNewSheetConfigurationProperty defaultNewSheetConfigurationProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.DefaultNewSheetConfigurationPropertystatic final classAn implementation forCfnAnalysis.DefaultNewSheetConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe options that determine the default settings for interactive layout configuration.default ObjectThe options that determine the default settings for a paginated layout configuration.default StringThe option that determines the sheet content type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInteractiveLayoutConfiguration
The options that determine the default settings for interactive layout configuration.Returns union: either
IResolvableorCfnAnalysis.DefaultInteractiveLayoutConfigurationProperty- See Also:
-
getPaginatedLayoutConfiguration
The options that determine the default settings for a paginated layout configuration.Returns union: either
IResolvableorCfnAnalysis.DefaultPaginatedLayoutConfigurationProperty- See Also:
-
getSheetContentType
The option that determines the sheet content type.- See Also:
-
builder
-