interface JobExecutionsRolloutConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJob.JobExecutionsRolloutConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJob_JobExecutionsRolloutConfigProperty |
Java | software.amazon.awscdk.services.iot.CfnJob.JobExecutionsRolloutConfigProperty |
Python | aws_cdk.aws_iot.CfnJob.JobExecutionsRolloutConfigProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJob » JobExecutionsRolloutConfigProperty |
Allows you to create a staged rollout of 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 jobExecutionsRolloutConfigProperty: iot.CfnJob.JobExecutionsRolloutConfigProperty = {
exponentialRate: {
baseRatePerMinute: 123,
incrementFactor: 123,
rateIncreaseCriteria: {
numberOfNotifiedThings: 123,
numberOfSucceededThings: 123,
},
},
maximumPerMinute: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| exponential | IResolvable | Exponential | Allows you to create an exponential rate of rollout for a job. |
| maximum | number | The maximum number of things that will be notified of a pending job, per minute. |
exponentialRate?
Type:
IResolvable | Exponential
(optional)
Allows you to create an exponential rate of rollout for a job.
maximumPerMinute?
Type:
number
(optional)
The maximum number of things that will be notified of a pending job, per minute.
This parameter allows you to create a staged rollout.

.NET
Go
Java
Python
TypeScript