interface AbortConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJobTemplate.AbortConfigProperty |
Java | software.amazon.awscdk.services.iot.CfnJobTemplate.AbortConfigProperty |
Python | aws_cdk.aws_iot.CfnJobTemplate.AbortConfigProperty |
TypeScript | @aws-cdk/aws-iot » CfnJobTemplate » AbortConfigProperty |
The criteria that determine when and how a job abort takes place.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iot from '@aws-cdk/aws-iot';
const abortConfigProperty: iot.CfnJobTemplate.AbortConfigProperty = {
criteriaList: [{
action: 'action',
failureType: 'failureType',
minNumberOfExecutedThings: 123,
thresholdPercentage: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| criteria | IResolvable | IResolvable | Abort[] | The list of criteria that determine when and how to abort the job. |
criteriaList
Type:
IResolvable | IResolvable | Abort[]
The list of criteria that determine when and how to abort the job.

.NET
Java
Python
TypeScript