Interface CfnHoursOfOperation.RecurrencePatternProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnHoursOfOperation.RecurrencePatternProperty.Jsii$Proxy
Enclosing class:
CfnHoursOfOperation

@Stability(Stable) public static interface CfnHoursOfOperation.RecurrencePatternProperty extends software.amazon.jsii.JsiiSerializable
Pattern 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.*;
 RecurrencePatternProperty recurrencePatternProperty = RecurrencePatternProperty.builder()
         .byMonth(List.of(123))
         .byMonthDay(List.of(123))
         .byWeekdayOccurrence(List.of(123))
         .frequency("frequency")
         .interval(123)
         .build();
 

See Also: