@Stability(value=Stable)
public static interface CfnJobTemplate.AbortCriteriaProperty
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.*;
AbortCriteriaProperty abortCriteriaProperty = AbortCriteriaProperty.builder()
.action("action")
.failureType("failureType")
.minNumberOfExecutedThings(123)
.thresholdPercentage(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJobTemplate.AbortCriteriaProperty.Builder
A builder for
CfnJobTemplate.AbortCriteriaProperty |
static class |
CfnJobTemplate.AbortCriteriaProperty.Jsii$Proxy
An implementation for
CfnJobTemplate.AbortCriteriaProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJobTemplate.AbortCriteriaProperty.Builder |
builder() |
String |
getAction()
The type of job action to take to initiate the job abort.
|
String |
getFailureType()
The type of job execution failures that can initiate a job abort.
|
Number |
getMinNumberOfExecutedThings()
The minimum number of things which must receive job execution notifications before the job can be aborted.
|
Number |
getThresholdPercentage()
The minimum percentage of job execution failures that must occur to initiate the job abort.
|
@Stability(value=Stable) @NotNull String getAction()
@Stability(value=Stable) @NotNull String getFailureType()
@Stability(value=Stable) @NotNull Number getMinNumberOfExecutedThings()
@Stability(value=Stable) @NotNull Number getThresholdPercentage()
AWS IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).
@Stability(value=Stable) static CfnJobTemplate.AbortCriteriaProperty.Builder builder()
Copyright © 2023. All rights reserved.