Interface CfnJob.ExponentialRolloutRateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJob.ExponentialRolloutRateProperty.Jsii$Proxy
- Enclosing class:
CfnJob
@Stability(Stable)
public static interface CfnJob.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJob.ExponentialRolloutRatePropertystatic final classAn implementation forCfnJob.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.Allows you to define a 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.- See Also:
-
getIncrementFactor
The exponential factor to increase the rate of rollout for a job.- See Also:
-
getRateIncreaseCriteria
Allows you to define a criteria to initiate the increase in rate of rollout for a job.Returns union: either
IResolvableorCfnJob.RateIncreaseCriteriaProperty- See Also:
-
builder
-