interface AbortConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoT.CfnJobTemplate.AbortConfigProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJobTemplate_AbortConfigProperty | 
|  Java | software.amazon.awscdk.services.iot.CfnJobTemplate.AbortConfigProperty | 
|  Python | aws_cdk.aws_iot.CfnJobTemplate.AbortConfigProperty | 
|  TypeScript | aws-cdk-lib»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 { aws_iot as iot } from 'aws-cdk-lib';
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.
