Interface CfnDeployment.IoTJobExecutionsRolloutConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeployment.IoTJobExecutionsRolloutConfigProperty.Jsii$Proxy
Enclosing class:
CfnDeployment

@Stability(Stable) public static interface CfnDeployment.IoTJobExecutionsRolloutConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.greengrassv2.*;
 Object rateIncreaseCriteria;
 IoTJobExecutionsRolloutConfigProperty ioTJobExecutionsRolloutConfigProperty = IoTJobExecutionsRolloutConfigProperty.builder()
         .exponentialRate(IoTJobExponentialRolloutRateProperty.builder()
                 .baseRatePerMinute(123)
                 .incrementFactor(123)
                 .rateIncreaseCriteria(rateIncreaseCriteria)
                 .build())
         .maximumPerMinute(123)
         .build();
 

See Also: