Interface CfnTemplate.FreeFormLayoutConfigurationProperty

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

@Stability(Stable) public static interface CfnTemplate.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.services.quicksight.*;
 FreeFormLayoutConfigurationProperty freeFormLayoutConfigurationProperty = FreeFormLayoutConfigurationProperty.builder()
         .elements(List.of(FreeFormLayoutElementProperty.builder()
                 .elementId("elementId")
                 .elementType("elementType")
                 .height("height")
                 .width("width")
                 .xAxisLocation("xAxisLocation")
                 .yAxisLocation("yAxisLocation")
                 // the properties below are optional
                 .backgroundStyle(FreeFormLayoutElementBackgroundStyleProperty.builder()
                         .color("color")
                         .visibility("visibility")
                         .build())
                 .borderStyle(FreeFormLayoutElementBorderStyleProperty.builder()
                         .color("color")
                         .visibility("visibility")
                         .build())
                 .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")
                 .build()))
         // the properties below are optional
         .canvasSizeOptions(FreeFormLayoutCanvasSizeOptionsProperty.builder()
                 .screenCanvasSizeOptions(FreeFormLayoutScreenCanvasSizeOptionsProperty.builder()
                         .optimizedViewPortWidth("optimizedViewPortWidth")
                         .build())
                 .build())
         .build();
 

See Also: