Interface CfnDashboardPropsMixin.DateTimeRangeProperty

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

@Stability(Stable) public static interface CfnDashboardPropsMixin.DateTimeRangeProperty 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.*;
 DateTimeRangeProperty dateTimeRangeProperty = DateTimeRangeProperty.builder()
         .endTime(DateTimeValueProperty.builder()
                 .type("type")
                 .value("value")
                 .build())
         .startTime(DateTimeValueProperty.builder()
                 .type("type")
                 .value("value")
                 .build())
         .build();
 

See Also: