interface MaintenanceWindowProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJobTemplate.MaintenanceWindowProperty |
Java | software.amazon.awscdk.services.iot.CfnJobTemplate.MaintenanceWindowProperty |
Python | aws_cdk.aws_iot.CfnJobTemplate.MaintenanceWindowProperty |
TypeScript | @aws-cdk/aws-iot » CfnJobTemplate » MaintenanceWindowProperty |
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 * as iot from '@aws-cdk/aws-iot';
const maintenanceWindowProperty: iot.CfnJobTemplate.MaintenanceWindowProperty = {
durationInMinutes: 123,
startTime: 'startTime',
};
Properties
Name | Type | Description |
---|---|---|
duration | number | Displays the duration of the next maintenance window. |
start | string | Displays the start time of the next maintenance window. |
durationInMinutes?
Type:
number
(optional)
Displays the duration of the next maintenance window.
startTime?
Type:
string
(optional)
Displays the start time of the next maintenance window.