Interface CfnRotation.ShiftCoverageProperty

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

@Stability(Stable) public static interface CfnRotation.ShiftCoverageProperty extends software.amazon.jsii.JsiiSerializable
Information about the days of the week that the on-call rotation coverage includes.

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.ssmcontacts.*;
 ShiftCoverageProperty shiftCoverageProperty = ShiftCoverageProperty.builder()
         .coverageTimes(List.of(CoverageTimeProperty.builder()
                 .endTime("endTime")
                 .startTime("startTime")
                 .build()))
         .dayOfWeek("dayOfWeek")
         .build();