Interface CfnDeploymentPropsMixin.IoTJobExecutionsRolloutConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeploymentPropsMixin.IoTJobExecutionsRolloutConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDeploymentPropsMixin
@Stability(Stable)
public static interface CfnDeploymentPropsMixin.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.cfnpropertymixins.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeploymentPropsMixin.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.Returns union: either
IResolvableorCfnDeploymentPropsMixin.IoTJobExponentialRolloutRateProperty- See Also:
-
getMaximumPerMinute
The maximum number of devices that receive a pending job notification, per minute.- See Also:
-
builder
@Stability(Stable) static CfnDeploymentPropsMixin.IoTJobExecutionsRolloutConfigProperty.Builder builder()
-