Interface CfnDashboardPropsMixin.DisplayConfigProperty

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

@Stability(Stable) public static interface CfnDashboardPropsMixin.DisplayConfigProperty extends software.amazon.jsii.JsiiSerializable
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.bcm.*;
 Object table;
 DisplayConfigProperty displayConfigProperty = DisplayConfigProperty.builder()
         .graph(Map.of(
                 "graphKey", GraphDisplayConfigProperty.builder()
                         .visualType("visualType")
                         .build()))
         .table(table)
         .build();
 

See Also: