Show / Hide Table of Contents

Interface IEcsDeploymentConfigProps

Construction properties of EcsDeploymentConfig.

Inherited Members
IBaseDeploymentConfigOptions.DeploymentConfigName
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEcsDeploymentConfigProps : IBaseDeploymentConfigOptions
Syntax (vb)
Public Interface IEcsDeploymentConfigProps Inherits IBaseDeploymentConfigOptions
Remarks

ExampleMetadata: infused

Examples
new EcsDeploymentConfig(this, "CustomConfig", new EcsDeploymentConfigProps {
                TrafficRouting = new TimeBasedCanaryTrafficRouting(new TimeBasedCanaryTrafficRoutingProps {
                    Interval = Duration.Minutes(15),
                    Percentage = 5
                })
            });

Synopsis

Properties

TrafficRouting

The configuration that specifies how traffic is shifted from the 'blue' target group to the 'green' target group during a deployment.

Properties

TrafficRouting

The configuration that specifies how traffic is shifted from the 'blue' target group to the 'green' target group during a deployment.

TrafficRouting? TrafficRouting { get; }
Property Value

TrafficRouting

Remarks

Default: AllAtOnce

Back to top Generated by DocFX