interface RetryCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnJobTemplatePropsMixin.RetryCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnJobTemplatePropsMixin_RetryCriteriaProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnJobTemplatePropsMixin.RetryCriteriaProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnJobTemplatePropsMixin.RetryCriteriaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnJobTemplatePropsMixin » RetryCriteriaProperty |
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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const retryCriteriaProperty: iot_mixins.CfnJobTemplatePropsMixin.RetryCriteriaProperty = {
failureType: 'failureType',
numberOfRetries: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| failure | string | The type of job execution failures that can initiate a job retry. |
| number | number | The number of retries allowed for a failure type for the job. |
failureType?
Type:
string
(optional)
The type of job execution failures that can initiate a job retry.
numberOfRetries?
Type:
number
(optional)
The number of retries allowed for a failure type for the job.

.NET
Go
Java
Python
TypeScript