interface ExponentialRolloutRateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJob.ExponentialRolloutRateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJob_ExponentialRolloutRateProperty |
Java | software.amazon.awscdk.services.iot.CfnJob.ExponentialRolloutRateProperty |
Python | aws_cdk.aws_iot.CfnJob.ExponentialRolloutRateProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJob » ExponentialRolloutRateProperty |
Allows you to create an exponential rate of rollout 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-lib';
const exponentialRolloutRateProperty: iot.CfnJob.ExponentialRolloutRateProperty = {
baseRatePerMinute: 123,
incrementFactor: 123,
rateIncreaseCriteria: {
numberOfNotifiedThings: 123,
numberOfSucceededThings: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| base | number | The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. |
| increment | number | The exponential factor to increase the rate of rollout for a job. |
| rate | IResolvable | Rate | Allows you to define a criteria to initiate the increase in rate of rollout for a job. |
baseRatePerMinute
Type:
number
The minimum number of things that will be notified of a pending job, per minute at the start of job rollout.
incrementFactor
Type:
number
The exponential factor to increase the rate of rollout for a job.
rateIncreaseCriteria
Type:
IResolvable | Rate
Allows you to define a criteria to initiate the increase in rate of rollout for a job.

.NET
Go
Java
Python
TypeScript