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