Interface CfnHoursOfOperation.HoursOfOperationConfigProperty

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

@Stability(Stable) public static interface CfnHoursOfOperation.HoursOfOperationConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains information about the hours of operation.

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.connect.*;
 HoursOfOperationConfigProperty hoursOfOperationConfigProperty = HoursOfOperationConfigProperty.builder()
         .day("day")
         .endTime(HoursOfOperationTimeSliceProperty.builder()
                 .hours(123)
                 .minutes(123)
                 .build())
         .startTime(HoursOfOperationTimeSliceProperty.builder()
                 .hours(123)
                 .minutes(123)
                 .build())
         .build();
 

See Also: