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: