Interface CfnJobTemplate.MaintenanceWindowProperty

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

@Stability(Stable) public static interface CfnJobTemplate.MaintenanceWindowProperty extends software.amazon.jsii.JsiiSerializable
An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.

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.*;
 MaintenanceWindowProperty maintenanceWindowProperty = MaintenanceWindowProperty.builder()
         .durationInMinutes(123)
         .startTime("startTime")
         .build();