Interface CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty

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

@Stability(Stable) public static interface CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about the hours of operation override config: day, start time, and end time.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.connect.mixins.*;
 HoursOfOperationOverrideConfigProperty hoursOfOperationOverrideConfigProperty = HoursOfOperationOverrideConfigProperty.builder()
         .day("day")
         .endTime(OverrideTimeSliceProperty.builder()
                 .hours(123)
                 .minutes(123)
                 .build())
         .startTime(OverrideTimeSliceProperty.builder()
                 .hours(123)
                 .minutes(123)
                 .build())
         .build();
 

See Also: