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

.NET
Go
Java
Python
TypeScript