Interface CfnJobTemplate.JobExecutionsRolloutConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobTemplate.JobExecutionsRolloutConfigProperty.Jsii$Proxy
- Enclosing class:
CfnJobTemplate
@Stability(Stable)
public static interface CfnJobTemplate.JobExecutionsRolloutConfigProperty
extends software.amazon.jsii.JsiiSerializable
Allows you to create a staged rollout of 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.*;
JobExecutionsRolloutConfigProperty jobExecutionsRolloutConfigProperty = JobExecutionsRolloutConfigProperty.builder()
.exponentialRolloutRate(ExponentialRolloutRateProperty.builder()
.baseRatePerMinute(123)
.incrementFactor(123)
.rateIncreaseCriteria(RateIncreaseCriteriaProperty.builder()
.numberOfNotifiedThings(123)
.numberOfSucceededThings(123)
.build())
.build())
.maximumPerMinute(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobTemplate.JobExecutionsRolloutConfigPropertystatic final classAn implementation forCfnJobTemplate.JobExecutionsRolloutConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExponentialRolloutRate
The rate of increase for a job rollout.This parameter allows you to define an exponential rate for a job rollout.
Returns union: either
IResolvableorCfnJobTemplate.ExponentialRolloutRateProperty- See Also:
-
getMaximumPerMinute
The maximum number of things that will be notified of a pending job, per minute.This parameter allows you to create a staged rollout.
- See Also:
-
builder
-