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