Interface CfnJobTemplate.RetryCriteriaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobTemplate.RetryCriteriaProperty.Jsii$Proxy
- Enclosing class:
CfnJobTemplate
@Stability(Stable)
public static interface CfnJobTemplate.RetryCriteriaProperty
extends software.amazon.jsii.JsiiSerializable
The criteria that determines how many retries are allowed for each failure type for a job.
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.*; RetryCriteriaProperty retryCriteriaProperty = RetryCriteriaProperty.builder() .failureType("failureType") .numberOfRetries(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJobTemplate.RetryCriteriaProperty
static final class
An implementation forCfnJobTemplate.RetryCriteriaProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailureType
The type of job execution failures that can initiate a job retry.- See Also:
-
getNumberOfRetries
The number of retries allowed for a failure type for the job.- See Also:
-
builder
-