@Stability(value=Stable)
public static interface CfnDeployment.DeploymentIoTJobConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeployment.DeploymentIoTJobConfigurationProperty.Builder
A builder for
CfnDeployment.DeploymentIoTJobConfigurationProperty |
static class |
CfnDeployment.DeploymentIoTJobConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeployment.DeploymentIoTJobConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeployment.DeploymentIoTJobConfigurationProperty.Builder |
builder() |
default Object |
getAbortConfig()
`CfnDeployment.DeploymentIoTJobConfigurationProperty.AbortConfig`.
|
default Object |
getJobExecutionsRolloutConfig()
`CfnDeployment.DeploymentIoTJobConfigurationProperty.JobExecutionsRolloutConfig`.
|
default Object |
getTimeoutConfig()
`CfnDeployment.DeploymentIoTJobConfigurationProperty.TimeoutConfig`.
|
@Stability(value=Stable) @Nullable default Object getAbortConfig()
@Stability(value=Stable) @Nullable default Object getJobExecutionsRolloutConfig()
@Stability(value=Stable) @Nullable default Object getTimeoutConfig()
@Stability(value=Stable) static CfnDeployment.DeploymentIoTJobConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.