interface MaintenanceWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnJobTemplatePropsMixin.MaintenanceWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnJobTemplatePropsMixin_MaintenanceWindowProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnJobTemplatePropsMixin.MaintenanceWindowProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnJobTemplatePropsMixin.MaintenanceWindowProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnJobTemplatePropsMixin » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const maintenanceWindowProperty: iot_mixins.CfnJobTemplatePropsMixin.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.

.NET
Go
Java
Python
TypeScript