aws-cdk-lib.aws_iot.CfnJobTemplate.RateIncreaseCriteriaProperty

interface RateIncreaseCriteriaProperty

LanguageType name
.NETAmazon.CDK.AWS.IoT.CfnJobTemplate.RateIncreaseCriteriaProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJobTemplate_RateIncreaseCriteriaProperty
Javasoftware.amazon.awscdk.services.iot.CfnJobTemplate.RateIncreaseCriteriaProperty
Pythonaws_cdk.aws_iot.CfnJobTemplate.RateIncreaseCriteriaProperty
TypeScript aws-cdk-lib » aws_iot » CfnJobTemplate » 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 { aws_iot as iot } from 'aws-cdk-lib';
const rateIncreaseCriteriaProperty: iot.CfnJobTemplate.RateIncreaseCriteriaProperty = {
  numberOfNotifiedThings: 123,
  numberOfSucceededThings: 123,
};

Properties

NameTypeDescription
numberOfNotifiedThings?numberThe threshold for number of notified things that will initiate the increase in rate of rollout.
numberOfSucceededThings?numberThe 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.