Interface CfnHoursOfOperationPropsMixin.HoursOfOperationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHoursOfOperationPropsMixin.HoursOfOperationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnHoursOfOperationPropsMixin
@Stability(Stable)
public static interface CfnHoursOfOperationPropsMixin.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.mixins.preview.services.connect.mixins.*;
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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnHoursOfOperationPropsMixin.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.Returns union: either
IResolvableorCfnHoursOfOperationPropsMixin.HoursOfOperationTimeSliceProperty- See Also:
-
getStartTime
The start time that your contact center opens.Returns union: either
IResolvableorCfnHoursOfOperationPropsMixin.HoursOfOperationTimeSliceProperty- See Also:
-
builder
@Stability(Stable) static CfnHoursOfOperationPropsMixin.HoursOfOperationConfigProperty.Builder builder()
-