Module: AWSCDK::ECS::DeploymentStrategy

Defined in:
ecs/deployment_strategy.rb

Overview

The deployment stratergy to use for ECS controller.

Constant Summary collapse

ROLLING =
Deprecated.
Note:

Default:

Rolling update deployment.

Jsii::Enum.new("aws-cdk-lib.aws_ecs.DeploymentStrategy", "ROLLING")
BLUE_GREEN =
Deprecated.
Note:

Default:

Blue/green deployment.

Jsii::Enum.new("aws-cdk-lib.aws_ecs.DeploymentStrategy", "BLUE_GREEN")
LINEAR =
Deprecated.
Note:

Default:

Linear deployment with progressive traffic shifting.

Jsii::Enum.new("aws-cdk-lib.aws_ecs.DeploymentStrategy", "LINEAR")
CANARY =
Deprecated.
Note:

Default:

Canary deployment with fixed traffic percentage testing.

Jsii::Enum.new("aws-cdk-lib.aws_ecs.DeploymentStrategy", "CANARY")