interface RetryCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJob.RetryCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJob_RetryCriteriaProperty |
Java | software.amazon.awscdk.services.iot.CfnJob.RetryCriteriaProperty |
Python | aws_cdk.aws_iot.CfnJob.RetryCriteriaProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJob » 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 { aws_iot as iot } from 'aws-cdk-lib';
const retryCriteriaProperty: iot.CfnJob.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
The type of job execution failures that can initiate a job retry.
numberOfRetries
Type:
number
The number of retries allowed for a failure type for the job.

.NET
Go
Java
Python
TypeScript