interface AbortConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnJobTemplatePropsMixin.AbortConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnJobTemplatePropsMixin_AbortConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnJobTemplatePropsMixin.AbortConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnJobTemplatePropsMixin.AbortConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnJobTemplatePropsMixin » 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/cfn-property-mixins';
const abortConfigProperty: iot.CfnJobTemplatePropsMixin.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)[]
(optional)
The list of criteria that determine when and how to abort the job.

.NET
Go
Java
Python
TypeScript