Interface CfnDeployment.IoTJobExecutionsRolloutConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeployment.IoTJobExecutionsRolloutConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDeployment
@Stability(Stable)
public static interface CfnDeployment.IoTJobExecutionsRolloutConfigProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about the rollout configuration for a job.
This configuration defines the rate at which the job deploys a configuration to a fleet of target devices.
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.greengrassv2.*; Object rateIncreaseCriteria; IoTJobExecutionsRolloutConfigProperty ioTJobExecutionsRolloutConfigProperty = IoTJobExecutionsRolloutConfigProperty.builder() .exponentialRate(IoTJobExponentialRolloutRateProperty.builder() .baseRatePerMinute(123) .incrementFactor(123) .rateIncreaseCriteria(rateIncreaseCriteria) .build()) .maximumPerMinute(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeployment.IoTJobExecutionsRolloutConfigProperty
static final class
An implementation forCfnDeployment.IoTJobExecutionsRolloutConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExponentialRate
The exponential rate to increase the job rollout rate.- See Also:
-
getMaximumPerMinute
The maximum number of devices that receive a pending job notification, per minute.- See Also:
-
builder
-