interface MaintenanceWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJob.MaintenanceWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJob_MaintenanceWindowProperty |
Java | software.amazon.awscdk.services.iot.CfnJob.MaintenanceWindowProperty |
Python | aws_cdk.aws_iot.CfnJob.MaintenanceWindowProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJob » 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 { aws_iot as iot } from 'aws-cdk-lib';
const maintenanceWindowProperty: iot.CfnJob.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
Displays the duration of the next maintenance window.
startTime
Type:
string
Displays the start time of the next maintenance window.

.NET
Go
Java
Python
TypeScript