interface IoTJobExponentialRolloutRateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GreengrassV2.CfnDeploymentPropsMixin.IoTJobExponentialRolloutRateProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrassv2#CfnDeploymentPropsMixin_IoTJobExponentialRolloutRateProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrassv2.CfnDeploymentPropsMixin.IoTJobExponentialRolloutRateProperty |
Python | aws_cdk.cfn_property_mixins.aws_greengrassv2.CfnDeploymentPropsMixin.IoTJobExponentialRolloutRateProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrassv2 » CfnDeploymentPropsMixin » IoTJobExponentialRolloutRateProperty |
Contains information about an exponential rollout rate for a configuration deployment job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrassv2 as greengrassv2 } from '@aws-cdk/cfn-property-mixins';
declare const rateIncreaseCriteria: any;
const ioTJobExponentialRolloutRateProperty: greengrassv2.CfnDeploymentPropsMixin.IoTJobExponentialRolloutRateProperty = {
baseRatePerMinute: 123,
incrementFactor: 123,
rateIncreaseCriteria: rateIncreaseCriteria,
};
Properties
| Name | Type | Description |
|---|---|---|
| base | number | The minimum number of devices that receive a pending job notification, per minute, when the job starts. |
| increment | number | The exponential factor to increase the rollout rate for the job. |
| rate | any | The criteria to increase the rollout rate for the job. |
baseRatePerMinute?
Type:
number
(optional)
The minimum number of devices that receive a pending job notification, per minute, when the job starts.
This parameter defines the initial rollout rate of the job.
incrementFactor?
Type:
number
(optional)
The exponential factor to increase the rollout rate for the job.
This parameter supports up to one digit after the decimal (for example, you can specify 1.5 , but not 1.55 ).
rateIncreaseCriteria?
Type:
any
(optional)
The criteria to increase the rollout rate for the job.

.NET
Go
Java
Python
TypeScript