aws-cdk-lib.aws_greengrassv2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty

interface IoTJobExecutionsRolloutConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.GreengrassV2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgreengrassv2#CfnDeployment_IoTJobExecutionsRolloutConfigProperty
Javasoftware.amazon.awscdk.services.greengrassv2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty
Pythonaws_cdk.aws_greengrassv2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty
TypeScript aws-cdk-lib » 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 { aws_greengrassv2 as greengrassv2 } from 'aws-cdk-lib';

declare const rateIncreaseCriteria: any;
const ioTJobExecutionsRolloutConfigProperty: greengrassv2.CfnDeployment.IoTJobExecutionsRolloutConfigProperty = {
  exponentialRate: {
    baseRatePerMinute: 123,
    incrementFactor: 123,
    rateIncreaseCriteria: rateIncreaseCriteria,
  },
  maximumPerMinute: 123,
};

Properties

NameTypeDescription
exponentialRate?IResolvable | IoTJobExponentialRolloutRatePropertyThe exponential rate to increase the job rollout rate.
maximumPerMinute?numberThe maximum number of devices that receive a pending job notification, per minute.

exponentialRate?

Type: IResolvable | IoTJobExponentialRolloutRateProperty (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.