Interface CfnHoursOfOperationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHoursOfOperationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:18.548Z")
@Stability(Stable)
public interface CfnHoursOfOperationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnHoursOfOperationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
CfnHoursOfOperationMixinProps cfnHoursOfOperationMixinProps = CfnHoursOfOperationMixinProps.builder()
.childHoursOfOperations(List.of(HoursOfOperationsIdentifierProperty.builder()
.id("id")
.name("name")
.build()))
.config(List.of(HoursOfOperationConfigProperty.builder()
.day("day")
.endTime(HoursOfOperationTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.startTime(HoursOfOperationTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.build()))
.description("description")
.hoursOfOperationOverrides(List.of(HoursOfOperationOverrideProperty.builder()
.effectiveFrom("effectiveFrom")
.effectiveTill("effectiveTill")
.hoursOfOperationOverrideId("hoursOfOperationOverrideId")
.overrideConfig(List.of(HoursOfOperationOverrideConfigProperty.builder()
.day("day")
.endTime(OverrideTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.startTime(OverrideTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.build()))
.overrideDescription("overrideDescription")
.overrideName("overrideName")
.overrideType("overrideType")
.recurrenceConfig(RecurrenceConfigProperty.builder()
.recurrencePattern(RecurrencePatternProperty.builder()
.byMonth(List.of(123))
.byMonthDay(List.of(123))
.byWeekdayOccurrence(List.of(123))
.frequency("frequency")
.interval(123)
.build())
.build())
.build()))
.instanceArn("instanceArn")
.name("name")
.parentHoursOfOperations(List.of(HoursOfOperationsIdentifierProperty.builder()
.id("id")
.name("name")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.timeZone("timeZone")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHoursOfOperationMixinPropsstatic final classAn implementation forCfnHoursOfOperationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectList of child hours of operations.default ObjectConfiguration information for the hours of operation.default StringThe description for the hours of operation.default ObjectOne or more hours of operation overrides assigned to an hour of operation.default ObjectThe Amazon Resource Name (ARN) of the instance.default StringgetName()The name for the hours of operation.default ObjectList of parent hours of operations.getTags()The tags used to organize, track, or control access for this resource.default StringThe time zone for the hours of operation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChildHoursOfOperations
List of child hours of operations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnHoursOfOperationPropsMixin.HoursOfOperationsIdentifierProperty>- See Also:
-
getConfig
Configuration information for the hours of operation.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnHoursOfOperationPropsMixin.HoursOfOperationConfigProperty>- See Also:
-
getDescription
The description for the hours of operation.- See Also:
-
getHoursOfOperationOverrides
One or more hours of operation overrides assigned to an hour of operation.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty>- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.Returns union: either
StringorIInstanceRef- See Also:
-
getName
The name for the hours of operation.- See Also:
-
getParentHoursOfOperations
List of parent hours of operations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnHoursOfOperationPropsMixin.HoursOfOperationsIdentifierProperty>- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
getTimeZone
The time zone for the hours of operation.- See Also:
-
builder
-