interface SchedulingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJob.SchedulingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJob_SchedulingConfigProperty |
Java | software.amazon.awscdk.services.iot.CfnJob.SchedulingConfigProperty |
Python | aws_cdk.aws_iot.CfnJob.SchedulingConfigProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJob » SchedulingConfigProperty |
Specifies the date and time that a job will begin the rollout of the job document to all devices in the target group.
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 schedulingConfigProperty: iot.CfnJob.SchedulingConfigProperty = {
endBehavior: 'endBehavior',
endTime: 'endTime',
maintenanceWindows: [{
durationInMinutes: 123,
startTime: 'startTime',
}],
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | Specifies the end behavior for all job executions after a job reaches the selected endTime. |
| end | string | The time a job will stop rollout of the job document to all devices in the target group for a job. |
| maintenance | IResolvable | (IResolvable | Maintenance)[] | An optional configuration within the SchedulingConfig to setup a recurring maintenance window. |
| start | string | The time a job will begin rollout of the job document to all devices in the target group for a job. |
endBehavior?
Type:
string
(optional)
Specifies the end behavior for all job executions after a job reaches the selected endTime.
endTime?
Type:
string
(optional)
The time a job will stop rollout of the job document to all devices in the target group for a job.
maintenanceWindows?
Type:
IResolvable | (IResolvable | Maintenance)[]
(optional)
An optional configuration within the SchedulingConfig to setup a recurring maintenance window.
startTime?
Type:
string
(optional)
The time a job will begin rollout of the job document to all devices in the target group for a job.

.NET
Go
Java
Python
TypeScript