Interface CfnJobTemplatePropsMixin.ExponentialRolloutRateProperty

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

@Stability(Stable) public static interface CfnJobTemplatePropsMixin.ExponentialRolloutRateProperty extends software.amazon.jsii.JsiiSerializable
Allows you to create an exponential rate of rollout for a 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.cfnpropertymixins.services.iot.*;
 ExponentialRolloutRateProperty exponentialRolloutRateProperty = ExponentialRolloutRateProperty.builder()
         .baseRatePerMinute(123)
         .incrementFactor(123)
         .rateIncreaseCriteria(RateIncreaseCriteriaProperty.builder()
                 .numberOfNotifiedThings(123)
                 .numberOfSucceededThings(123)
                 .build())
         .build();
 

See Also: