Interface CfnDeployment.IoTJobAbortConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeployment.IoTJobAbortConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnDeployment
@Stability(Stable)
public static interface CfnDeployment.IoTJobAbortConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.greengrassv2.*;
IoTJobAbortConfigProperty ioTJobAbortConfigProperty = IoTJobAbortConfigProperty.builder()
.criteriaList(List.of(IoTJobAbortCriteriaProperty.builder()
.action("action")
.failureType("failureType")
.minNumberOfExecutedThings(123)
.thresholdPercentage(123)
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeployment.IoTJobAbortConfigPropertystatic final classAn implementation forCfnDeployment.IoTJobAbortConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The list of criteria that define when and how to cancel the configuration deployment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCriteriaList
The list of criteria that define when and how to cancel the configuration deployment. -
builder
-