Interface CfnDeployment.DeploymentComponentUpdatePolicyProperty

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

@Stability(Stable) public static interface CfnDeployment.DeploymentComponentUpdatePolicyProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a deployment's policy that defines when components are safe to update.

Each component on a device can report whether or not it's ready to update. After a component and its dependencies are ready, they can apply the update in the deployment. You can configure whether or not the deployment notifies components of an update and waits for a response. You specify the amount of time each component has to respond to the update notification.

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.*;
 DeploymentComponentUpdatePolicyProperty deploymentComponentUpdatePolicyProperty = DeploymentComponentUpdatePolicyProperty.builder()
         .action("action")
         .timeoutInSeconds(123)
         .build();