Interface CfnDeploymentGroup.DeploymentStyleProperty

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

@Stability(Stable) public static interface CfnDeploymentGroup.DeploymentStyleProperty extends software.amazon.jsii.JsiiSerializable
Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

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.*;
 DeploymentStyleProperty deploymentStyleProperty = DeploymentStyleProperty.builder()
         .deploymentOption("deploymentOption")
         .deploymentType("deploymentType")
         .build();