Interface IEcsDeploymentConfigProps
Construction properties of EcsDeploymentConfig
.
Inherited Members
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.
virtual TrafficRouting TrafficRouting { get; }
Property Value
Remarks
Default: AllAtOnce