public static interface CfnHoursOfOperation.HoursOfOperationConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnHoursOfOperation.HoursOfOperationConfigProperty.Builder
A builder for
CfnHoursOfOperation.HoursOfOperationConfigProperty |
static class |
CfnHoursOfOperation.HoursOfOperationConfigProperty.Jsii$Proxy
An implementation for
CfnHoursOfOperation.HoursOfOperationConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnHoursOfOperation.HoursOfOperationConfigProperty.Builder |
builder() |
java.lang.String |
getDay()
The day that the hours of operation applies to.
|
java.lang.Object |
getEndTime()
The end time that your contact center closes.
|
java.lang.Object |
getStartTime()
The start time that your contact center opens.
|