Interface EcsDeploymentConfigProps
- All Superinterfaces:
BaseDeploymentConfigOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EcsDeploymentConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:36.805Z")
@Stability(Stable)
public interface EcsDeploymentConfigProps
extends software.amazon.jsii.JsiiSerializable, BaseDeploymentConfigOptions
Construction properties of
EcsDeploymentConfig.
Example:
EcsDeploymentConfig.Builder.create(this, "CustomConfig")
.trafficRouting(TimeBasedCanaryTrafficRouting.Builder.create()
.interval(Duration.minutes(15))
.percentage(5)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEcsDeploymentConfigPropsstatic final classAn implementation forEcsDeploymentConfigProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default TrafficRoutingThe configuration that specifies how traffic is shifted from the 'blue' target group to the 'green' target group during a deployment.Methods inherited from interface software.amazon.awscdk.services.codedeploy.BaseDeploymentConfigOptions
getDeploymentConfigNameMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTrafficRouting
The configuration that specifies how traffic is shifted from the 'blue' target group to the 'green' target group during a deployment.Default: AllAtOnce
-
builder
- Returns:
- a
EcsDeploymentConfigProps.BuilderofEcsDeploymentConfigProps
-