interface RateIncreaseCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnJobTemplatePropsMixin.RateIncreaseCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnJobTemplatePropsMixin_RateIncreaseCriteriaProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnJobTemplatePropsMixin.RateIncreaseCriteriaProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnJobTemplatePropsMixin.RateIncreaseCriteriaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnJobTemplatePropsMixin » RateIncreaseCriteriaProperty |
Allows you to define a criteria to initiate the increase in 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const rateIncreaseCriteriaProperty: iot_mixins.CfnJobTemplatePropsMixin.RateIncreaseCriteriaProperty = {
numberOfNotifiedThings: 123,
numberOfSucceededThings: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| number | number | The threshold for number of notified things that will initiate the increase in rate of rollout. |
| number | number | The threshold for number of succeeded things that will initiate the increase in rate of rollout. |
numberOfNotifiedThings?
Type:
number
(optional)
The threshold for number of notified things that will initiate the increase in rate of rollout.
numberOfSucceededThings?
Type:
number
(optional)
The threshold for number of succeeded things that will initiate the increase in rate of rollout.

.NET
Go
Java
Python
TypeScript