interface AbortCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnJob.AbortCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnJob_AbortCriteriaProperty |
Java | software.amazon.awscdk.services.iot.CfnJob.AbortCriteriaProperty |
Python | aws_cdk.aws_iot.CfnJob.AbortCriteriaProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnJob » AbortCriteriaProperty |
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 abortCriteriaProperty: iot.CfnJob.AbortCriteriaProperty = {
action: 'action',
failureType: 'failureType',
minNumberOfExecutedThings: 123,
thresholdPercentage: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The type of job action to take to initiate the job abort. |
| failure | string | The type of job execution failures that can initiate a job abort. |
| min | number | The minimum number of things which must receive job execution notifications before the job can be aborted. |
| threshold | number | The minimum percentage of job execution failures that must occur to initiate the job abort. |
action
Type:
string
The type of job action to take to initiate the job abort.
failureType
Type:
string
The type of job execution failures that can initiate a job abort.
minNumberOfExecutedThings
Type:
number
The minimum number of things which must receive job execution notifications before the job can be aborted.
thresholdPercentage
Type:
number
The minimum percentage of job execution failures that must occur to initiate the job abort.

.NET
Go
Java
Python
TypeScript