Interface CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty.Jsii$Proxy
- Enclosing class:
CfnHoursOfOperation
@Stability(Stable)
public static interface CfnHoursOfOperation.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.services.connect.*; 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
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnHoursOfOperation.HoursOfOperationOverrideConfigProperty
-
Method Summary
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.- See Also:
-
getStartTime
The start time when your contact center opens if overrides are applied.- See Also:
-
builder
@Stability(Stable) static CfnHoursOfOperation.HoursOfOperationOverrideConfigProperty.Builder builder()
-