interface AbortConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnJobTemplatePropsMixin.AbortConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnJobTemplatePropsMixin_AbortConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnJobTemplatePropsMixin.AbortConfigProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnJobTemplatePropsMixin.AbortConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const abortConfigProperty: iot_mixins.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