interface IoTJobExecutionsRolloutConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.GreengrassV2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty | 
  Java | software.amazon.awscdk.services.greengrassv2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty | 
  Python | aws_cdk.aws_greengrassv2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty | 
  TypeScript  | @aws-cdk/aws-greengrassv2 » CfnDeployment » IoTJobExecutionsRolloutConfigProperty | 
Contains information about the rollout configuration for a job.
This configuration defines the rate at which the job deploys a configuration to a fleet of target devices.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as greengrassv2 from '@aws-cdk/aws-greengrassv2';
declare const rateIncreaseCriteria: any;
const ioTJobExecutionsRolloutConfigProperty: greengrassv2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty = {
  exponentialRate: {
    baseRatePerMinute: 123,
    incrementFactor: 123,
    rateIncreaseCriteria: rateIncreaseCriteria,
  },
  maximumPerMinute: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| exponential | IResolvable | Io | The exponential rate to increase the job rollout rate. | 
| maximum | number | The maximum number of devices that receive a pending job notification, per minute. | 
exponentialRate?
Type:
IResolvable | Io
(optional)
The exponential rate to increase the job rollout rate.
maximumPerMinute?
Type:
number
(optional)
The maximum number of devices that receive a pending job notification, per minute.

 .NET
 Java
 Python
 TypeScript