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: