Interface CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty

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

@Stability(Stable) public static interface CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty extends software.amazon.jsii.JsiiSerializable
A weekly schedule.

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.inspectorv2.*;
 WeeklyScheduleProperty weeklyScheduleProperty = WeeklyScheduleProperty.builder()
         .days(List.of("days"))
         .startTime(TimeProperty.builder()
                 .timeOfDay("timeOfDay")
                 .timeZone("timeZone")
                 .build())
         .build();
 

See Also: