Interface CfnJob.RetryCriteriaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJob.RetryCriteriaProperty.Jsii$Proxy
- Enclosing class:
CfnJob
@Stability(Stable)
public static interface CfnJob.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJob.RetryCriteriaPropertystatic final classAn implementation forCfnJob.RetryCriteriaProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The type of job execution failures that can initiate a job retry.The number of retries allowed for a failure type for the job.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
-