Interface CfnDeployment.IoTJobExponentialRolloutRateProperty

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

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

See Also: