Interface CfnJobTemplatePropsMixin.AbortCriteriaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobTemplatePropsMixin.AbortCriteriaProperty.Jsii$Proxy
- Enclosing class:
CfnJobTemplatePropsMixin
@Stability(Stable)
public static interface CfnJobTemplatePropsMixin.AbortCriteriaProperty
extends software.amazon.jsii.JsiiSerializable
The criteria that determine when and how a job abort takes place.
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.iot.*;
AbortCriteriaProperty abortCriteriaProperty = AbortCriteriaProperty.builder()
.action("action")
.failureType("failureType")
.minNumberOfExecutedThings(123)
.thresholdPercentage(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobTemplatePropsMixin.AbortCriteriaPropertystatic final classAn implementation forCfnJobTemplatePropsMixin.AbortCriteriaProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe type of job action to take to initiate the job abort.default StringThe type of job execution failures that can initiate a job abort.default NumberThe minimum number of things which must receive job execution notifications before the job can be aborted.default NumberThe minimum percentage of job execution failures that must occur to initiate the job abort.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
The type of job action to take to initiate the job abort.- See Also:
-
getFailureType
The type of job execution failures that can initiate a job abort.- See Also:
-
getMinNumberOfExecutedThings
The minimum number of things which must receive job execution notifications before the job can be aborted.- See Also:
-
getThresholdPercentage
The minimum percentage of job execution failures that must occur to initiate the job abort.AWS IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).
- See Also:
-
builder
-