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