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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnHoursOfOperation.HoursOfOperationConfigProperty
static final class
An 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.- See Also:
-
getEndTime
The end time that your contact center closes.- See Also:
-
getStartTime
The start time that your contact center opens.- See Also:
-
builder
-