@Stability(value=Stable)
public static interface CfnJobTemplate.JobExecutionsRolloutConfigProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJobTemplate.JobExecutionsRolloutConfigProperty.Builder
A builder for
CfnJobTemplate.JobExecutionsRolloutConfigProperty |
static class |
CfnJobTemplate.JobExecutionsRolloutConfigProperty.Jsii$Proxy
An implementation for
CfnJobTemplate.JobExecutionsRolloutConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJobTemplate.JobExecutionsRolloutConfigProperty.Builder |
builder() |
default Object |
getExponentialRolloutRate()
Allows you to create an exponential rate of rollout for a job.
|
default Number |
getMaximumPerMinute()
The maximum number of things that will be notified of a pending job, per minute.
|
@Stability(value=Stable) @Nullable default Object getExponentialRolloutRate()
@Stability(value=Stable) @Nullable default Number getMaximumPerMinute()
This parameter allows you to create a staged rollout.
@Stability(value=Stable) static CfnJobTemplate.JobExecutionsRolloutConfigProperty.Builder builder()
Copyright © 2023. All rights reserved.