Interface CfnDeployment.DeploymentIoTJobConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeployment.DeploymentIoTJobConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeployment
@Stability(Stable)
public static interface CfnDeployment.DeploymentIoTJobConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about an AWS IoT job configuration.
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; DeploymentIoTJobConfigurationProperty deploymentIoTJobConfigurationProperty = DeploymentIoTJobConfigurationProperty.builder() .abortConfig(IoTJobAbortConfigProperty.builder() .criteriaList(List.of(IoTJobAbortCriteriaProperty.builder() .action("action") .failureType("failureType") .minNumberOfExecutedThings(123) .thresholdPercentage(123) .build())) .build()) .jobExecutionsRolloutConfig(IoTJobExecutionsRolloutConfigProperty.builder() .exponentialRate(IoTJobExponentialRolloutRateProperty.builder() .baseRatePerMinute(123) .incrementFactor(123) .rateIncreaseCriteria(rateIncreaseCriteria) .build()) .maximumPerMinute(123) .build()) .timeoutConfig(IoTJobTimeoutConfigProperty.builder() .inProgressTimeoutInMinutes(123) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeployment.DeploymentIoTJobConfigurationProperty
static final class
An implementation forCfnDeployment.DeploymentIoTJobConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAbortConfig
The stop configuration for the job.This configuration defines when and how to stop a job rollout.
-
getJobExecutionsRolloutConfig
The rollout configuration for the job.This configuration defines the rate at which the job rolls out to the fleet of target devices.
-
getTimeoutConfig
The timeout configuration for the job.This configuration defines the amount of time each device has to complete the job.
-
builder
-