interface AbortCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnJobPropsMixin.AbortCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnJobPropsMixin_AbortCriteriaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnJobPropsMixin.AbortCriteriaProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnJobPropsMixin.AbortCriteriaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnJobPropsMixin » 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/cfn-property-mixins';
const abortCriteriaProperty: iot.CfnJobPropsMixin.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
(optional)
The type of job action to take to initiate the job abort.
failureType?
Type:
string
(optional)
The type of job execution failures that can initiate a job abort.
minNumberOfExecutedThings?
Type:
number
(optional)
The minimum number of things which must receive job execution notifications before the job can be aborted.
thresholdPercentage?
Type:
number
(optional)
The minimum percentage of job execution failures that must occur to initiate the job abort.

.NET
Go
Java
Python
TypeScript