Interface CfnJob.SchedulingConfigProperty

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

@Stability(Stable) public static interface CfnJob.SchedulingConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies the date and time that a job will begin the rollout of the job document to all devices in the target group.

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.iot.*;
 SchedulingConfigProperty schedulingConfigProperty = SchedulingConfigProperty.builder()
         .endBehavior("endBehavior")
         .endTime("endTime")
         .maintenanceWindows(List.of(MaintenanceWindowProperty.builder()
                 .durationInMinutes(123)
                 .startTime("startTime")
                 .build()))
         .startTime("startTime")
         .build();
 

See Also: