@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-10T18:02:03.109Z") @Stability(value=Stable) public interface CfnDeploymentConfigProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnDeploymentConfigProps cfnDeploymentConfigProps = CfnDeploymentConfigProps.builder()
.computePlatform("computePlatform")
.deploymentConfigName("deploymentConfigName")
.minimumHealthyHosts(MinimumHealthyHostsProperty.builder()
.type("type")
.value(123)
.build())
.trafficRoutingConfig(TrafficRoutingConfigProperty.builder()
.type("type")
// the properties below are optional
.timeBasedCanary(TimeBasedCanaryProperty.builder()
.canaryInterval(123)
.canaryPercentage(123)
.build())
.timeBasedLinear(TimeBasedLinearProperty.builder()
.linearInterval(123)
.linearPercentage(123)
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeploymentConfigProps.Builder
A builder for
CfnDeploymentConfigProps |
static class |
CfnDeploymentConfigProps.Jsii$Proxy
An implementation for
CfnDeploymentConfigProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeploymentConfigProps.Builder |
builder() |
default String |
getComputePlatform()
`AWS::CodeDeploy::DeploymentConfig.ComputePlatform`.
|
default String |
getDeploymentConfigName()
`AWS::CodeDeploy::DeploymentConfig.DeploymentConfigName`.
|
default Object |
getMinimumHealthyHosts()
`AWS::CodeDeploy::DeploymentConfig.MinimumHealthyHosts`.
|
default Object |
getTrafficRoutingConfig()
`AWS::CodeDeploy::DeploymentConfig.TrafficRoutingConfig`.
|
@Stability(value=Stable) @Nullable default String getComputePlatform()
@Stability(value=Stable) @Nullable default String getDeploymentConfigName()
@Stability(value=Stable) @Nullable default Object getMinimumHealthyHosts()
@Stability(value=Stable) @Nullable default Object getTrafficRoutingConfig()
@Stability(value=Stable) static CfnDeploymentConfigProps.Builder builder()
CfnDeploymentConfigProps.Builder of CfnDeploymentConfigPropsCopyright © 2021. All rights reserved.