interface IoTJobAbortConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.GreengrassV2.CfnDeployment.IoTJobAbortConfigProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgreengrassv2#CfnDeployment_IoTJobAbortConfigProperty | 
  Java | software.amazon.awscdk.services.greengrassv2.CfnDeployment.IoTJobAbortConfigProperty | 
  Python | aws_cdk.aws_greengrassv2.CfnDeployment.IoTJobAbortConfigProperty | 
  TypeScript  | aws-cdk-lib » 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 { aws_greengrassv2 as greengrassv2 } from 'aws-cdk-lib';
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
 Go
 Java
 Python
 TypeScript