Interface CfnJobTemplate.ExponentialRolloutRateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobTemplate.ExponentialRolloutRateProperty.Jsii$Proxy
- Enclosing class:
CfnJobTemplate
@Stability(Stable)
public static interface CfnJobTemplate.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.services.iot.*; ExponentialRolloutRateProperty exponentialRolloutRateProperty = ExponentialRolloutRateProperty.builder() .baseRatePerMinute(123) .incrementFactor(123) .rateIncreaseCriteria(RateIncreaseCriteriaProperty.builder() .numberOfNotifiedThings(123) .numberOfSucceededThings(123) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJobTemplate.ExponentialRolloutRateProperty
static final class
An implementation forCfnJobTemplate.ExponentialRolloutRateProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The minimum number of things that will be notified of a pending job, per minute at the start of job rollout.The exponential factor to increase the rate of rollout for a job.The criteria to initiate the increase in rate of rollout for a job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBaseRatePerMinute
The minimum number of things that will be notified of a pending job, per minute at the start of job rollout.This parameter allows you to define the initial rate of rollout.
- See Also:
-
getIncrementFactor
The exponential factor to increase the rate of rollout for a job.AWS IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).
- See Also:
-
getRateIncreaseCriteria
The criteria to initiate the increase in rate of rollout for a job.- See Also:
-
builder
-