Interface CfnDeployment.DeploymentPoliciesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeployment.DeploymentPoliciesProperty.Jsii$Proxy
Enclosing class:
CfnDeployment

@Stability(Stable) public static interface CfnDeployment.DeploymentPoliciesProperty extends software.amazon.jsii.JsiiSerializable
Contains information about policies that define how a deployment updates components and handles failure.

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.*;
 DeploymentPoliciesProperty deploymentPoliciesProperty = DeploymentPoliciesProperty.builder()
         .componentUpdatePolicy(DeploymentComponentUpdatePolicyProperty.builder()
                 .action("action")
                 .timeoutInSeconds(123)
                 .build())
         .configurationValidationPolicy(DeploymentConfigurationValidationPolicyProperty.builder()
                 .timeoutInSeconds(123)
                 .build())
         .failureHandlingPolicy("failureHandlingPolicy")
         .build();
 

See Also: