Interface CfnJobTemplate.JobExecutionsRetryConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJobTemplate.JobExecutionsRetryConfigProperty.Jsii$Proxy
Enclosing class:
CfnJobTemplate

@Stability(Stable) public static interface CfnJobTemplate.JobExecutionsRetryConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration 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.*;
 JobExecutionsRetryConfigProperty jobExecutionsRetryConfigProperty = JobExecutionsRetryConfigProperty.builder()
         .retryCriteriaList(List.of(RetryCriteriaProperty.builder()
                 .failureType("failureType")
                 .numberOfRetries(123)
                 .build()))
         .build();
 

See Also: