Interface CfnAnalysisPropsMixin.FreeFormLayoutConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisPropsMixin.FreeFormLayoutConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisPropsMixin
@Stability(Stable)
public static interface CfnAnalysisPropsMixin.FreeFormLayoutConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration of a free-form 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.cfnpropertymixins.services.quicksight.*;
FreeFormLayoutConfigurationProperty freeFormLayoutConfigurationProperty = FreeFormLayoutConfigurationProperty.builder()
.canvasSizeOptions(FreeFormLayoutCanvasSizeOptionsProperty.builder()
.screenCanvasSizeOptions(FreeFormLayoutScreenCanvasSizeOptionsProperty.builder()
.optimizedViewPortWidth("optimizedViewPortWidth")
.build())
.build())
.elements(List.of(FreeFormLayoutElementProperty.builder()
.backgroundStyle(FreeFormLayoutElementBackgroundStyleProperty.builder()
.color("color")
.visibility("visibility")
.build())
.borderStyle(FreeFormLayoutElementBorderStyleProperty.builder()
.color("color")
.visibility("visibility")
.build())
.elementId("elementId")
.elementType("elementType")
.height("height")
.loadingAnimation(LoadingAnimationProperty.builder()
.visibility("visibility")
.build())
.renderingRules(List.of(SheetElementRenderingRuleProperty.builder()
.configurationOverrides(SheetElementConfigurationOverridesProperty.builder()
.visibility("visibility")
.build())
.expression("expression")
.build()))
.selectedBorderStyle(FreeFormLayoutElementBorderStyleProperty.builder()
.color("color")
.visibility("visibility")
.build())
.visibility("visibility")
.width("width")
.xAxisLocation("xAxisLocation")
.yAxisLocation("yAxisLocation")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisPropsMixin.FreeFormLayoutConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnAnalysisPropsMixin.FreeFormLayoutCanvasSizeOptionsPropertydefault ObjectThe elements that are included in a free-form layout.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCanvasSizeOptions
Returns union: eitherIResolvableorCfnAnalysisPropsMixin.FreeFormLayoutCanvasSizeOptionsProperty- See Also:
-
getElements
The elements that are included in a free-form layout.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAnalysisPropsMixin.FreeFormLayoutElementProperty>- See Also:
-
builder
@Stability(Stable) static CfnAnalysisPropsMixin.FreeFormLayoutConfigurationProperty.Builder builder()
-