Interface CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty.Jsii$Proxy
- Enclosing class:
CfnHoursOfOperationPropsMixin
@Stability(Stable)
public static interface CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty
extends software.amazon.jsii.JsiiSerializable
Information about the hours of operation override config: day, start time, and end time.
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.*;
HoursOfOperationOverrideConfigProperty hoursOfOperationOverrideConfigProperty = HoursOfOperationOverrideConfigProperty.builder()
.day("day")
.endTime(OverrideTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.startTime(OverrideTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetDay()The day that the hours of operation override applies to.default ObjectThe end time that your contact center closes if overrides are applied.default ObjectThe start time when your contact center opens if overrides are applied.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDay
The day that the hours of operation override applies to.- See Also:
-
getEndTime
The end time that your contact center closes if overrides are applied.Returns union: either
IResolvableorCfnHoursOfOperationPropsMixin.OverrideTimeSliceProperty- See Also:
-
getStartTime
The start time when your contact center opens if overrides are applied.Returns union: either
IResolvableorCfnHoursOfOperationPropsMixin.OverrideTimeSliceProperty- See Also:
-
builder
@Stability(Stable) static CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty.Builder builder()
-