interface IoTJobAbortConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GreengrassV2.Mixins.CfnDeploymentPropsMixin.IoTJobAbortConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrassv2/mixins#CfnDeploymentPropsMixin_IoTJobAbortConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.greengrassv2.mixins.CfnDeploymentPropsMixin.IoTJobAbortConfigProperty |
Python | aws_cdk.mixins_preview.aws_greengrassv2.mixins.CfnDeploymentPropsMixin.IoTJobAbortConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_greengrassv2 » mixins » 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 { mixins as greengrassv2_mixins } from '@aws-cdk/mixins-preview/aws-greengrassv2';
const ioTJobAbortConfigProperty: greengrassv2_mixins.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