interface JobExecutionsRetryConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnJobTemplatePropsMixin.JobExecutionsRetryConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnJobTemplatePropsMixin_JobExecutionsRetryConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnJobTemplatePropsMixin.JobExecutionsRetryConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnJobTemplatePropsMixin.JobExecutionsRetryConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnJobTemplatePropsMixin » 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/cfn-property-mixins';
const jobExecutionsRetryConfigProperty: iot.CfnJobTemplatePropsMixin.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