Interface CfnHoursOfOperation.RecurrenceConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHoursOfOperation.RecurrenceConfigProperty.Jsii$Proxy
- Enclosing class:
CfnHoursOfOperation
@Stability(Stable)
public static interface CfnHoursOfOperation.RecurrenceConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for recurring hours of operation overrides.
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.*;
RecurrenceConfigProperty recurrenceConfigProperty = RecurrenceConfigProperty.builder()
.recurrencePattern(RecurrencePatternProperty.builder()
.byMonth(List.of(123))
.byMonthDay(List.of(123))
.byWeekdayOccurrence(List.of(123))
.frequency("frequency")
.interval(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHoursOfOperation.RecurrenceConfigPropertystatic final classAn implementation forCfnHoursOfOperation.RecurrenceConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRecurrencePattern
Pattern for recurring hours of operation overrides.Returns union: either
IResolvableorCfnHoursOfOperation.RecurrencePatternProperty- See Also:
-
builder
-