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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHoursOfOperation.HoursOfOperationConfigPropertystatic final classAn implementation forCfnHoursOfOperation.HoursOfOperationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDay
The day that the hours of operation applies to. -
getEndTime
The end time that your contact center closes. -
getStartTime
The start time that your contact center opens. -
builder
-