interface JobExecutionsRetryConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJobTemplate.JobExecutionsRetryConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJobTemplate_JobExecutionsRetryConfigProperty |
Java | software.amazon.awscdk.services.iot.CfnJobTemplate.JobExecutionsRetryConfigProperty |
Python | aws_cdk.aws_iot.CfnJobTemplate.JobExecutionsRetryConfigProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJobTemplate » JobExecutionsRetryConfigProperty |
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 { aws_iot as iot } from 'aws-cdk-lib';
const jobExecutionsRetryConfigProperty: iot.CfnJobTemplate.JobExecutionsRetryConfigProperty = {
retryCriteriaList: [{
failureType: 'failureType',
numberOfRetries: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| retry | IResolvable | (IResolvable | Retry)[] | The list of criteria that determines how many retries are allowed for each failure type for a job. |
retryCriteriaList?
Type:
IResolvable | (IResolvable | Retry)[]
(optional)
The list of criteria that determines how many retries are allowed for each failure type for a job.

.NET
Go
Java
Python
TypeScript