Interface CfnDashboard.KPIVisualLayoutOptionsProperty

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

@Stability(Stable) public static interface CfnDashboard.KPIVisualLayoutOptionsProperty extends software.amazon.jsii.JsiiSerializable
The options that determine the layout a KPI visual.

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.*;
 KPIVisualLayoutOptionsProperty kPIVisualLayoutOptionsProperty = KPIVisualLayoutOptionsProperty.builder()
         .standardLayout(KPIVisualStandardLayoutProperty.builder()
                 .type("type")
                 .build())
         .build();
 

See Also: