interface IoTJobAbortConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.GreengrassV2.CfnDeployment.IoTJobAbortConfigProperty | 
  Java | software.amazon.awscdk.services.greengrassv2.CfnDeployment.IoTJobAbortConfigProperty | 
  Python | aws_cdk.aws_greengrassv2.CfnDeployment.IoTJobAbortConfigProperty | 
  TypeScript  | @aws-cdk/aws-greengrassv2 » CfnDeployment » IoTJobAbortConfigProperty | 
Contains a list of criteria that define when and how to cancel a configuration deployment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as greengrassv2 from '@aws-cdk/aws-greengrassv2';
const ioTJobAbortConfigProperty: greengrassv2.CfnDeployment.IoTJobAbortConfigProperty = {
  criteriaList: [{
    action: 'action',
    failureType: 'failureType',
    minNumberOfExecutedThings: 123,
    thresholdPercentage: 123,
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| criteria | IResolvable | IResolvable | Io[] | The list of criteria that define when and how to cancel the configuration deployment. | 
criteriaList
Type:
IResolvable | IResolvable | Io[]
The list of criteria that define when and how to cancel the configuration deployment.

 .NET
 Java
 Python
 TypeScript