Interface CfnDashboard.DefaultSectionBasedLayoutConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DefaultSectionBasedLayoutConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DefaultSectionBasedLayoutConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the default settings for a section-based 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.*;
DefaultSectionBasedLayoutConfigurationProperty defaultSectionBasedLayoutConfigurationProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDashboard.DefaultSectionBasedLayoutConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Determines the screen canvas size options for a section-based layout.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCanvasSizeOptions
Determines the screen canvas size options for a section-based layout.Returns union: either
IResolvableorCfnDashboard.SectionBasedLayoutCanvasSizeOptionsProperty- See Also:
-
builder
@Stability(Stable) static CfnDashboard.DefaultSectionBasedLayoutConfigurationProperty.Builder builder()
-