Interface CfnDeploymentConfig.MinimumHealthyHostsProperty

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

@Stability(Stable) public static interface CfnDeploymentConfig.MinimumHealthyHostsProperty extends software.amazon.jsii.JsiiSerializable
MinimumHealthyHosts is a property of the DeploymentConfig resource that defines how many instances must remain healthy during an AWS CodeDeploy 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.codedeploy.*;
 MinimumHealthyHostsProperty minimumHealthyHostsProperty = MinimumHealthyHostsProperty.builder()
         .type("type")
         .value(123)
         .build();
 

See Also: