interface IoTJobAbortConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GreengrassV2.CfnDeploymentPropsMixin.IoTJobAbortConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrassv2#CfnDeploymentPropsMixin_IoTJobAbortConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrassv2.CfnDeploymentPropsMixin.IoTJobAbortConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_greengrassv2.CfnDeploymentPropsMixin.IoTJobAbortConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrassv2 » CfnDeploymentPropsMixin » 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/cfn-property-mixins';
const ioTJobAbortConfigProperty: greengrassv2.CfnDeploymentPropsMixin.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)[]
(optional)
The list of criteria that define when and how to cancel the configuration deployment.

.NET
Go
Java
Python
TypeScript