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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobTemplate.JobExecutionsRetryConfigPropertystatic final classAn implementation forCfnJobTemplate.JobExecutionsRetryConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRetryCriteriaList
The list of criteria that determines how many retries are allowed for each failure type for a job.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnJobTemplate.RetryCriteriaProperty>- See Also:
-
builder
-