class EcsDeploymentConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeDeploy.EcsDeploymentConfig |
Java | software.amazon.awscdk.services.codedeploy.EcsDeploymentConfig |
Python | aws_cdk.aws_codedeploy.EcsDeploymentConfig |
TypeScript (source) | @aws-cdk/aws-codedeploy » EcsDeploymentConfig |
A custom Deployment Configuration for an ECS Deployment Group.
Note: This class currently stands as namespaced container of the default configurations until CloudFormation supports custom ECS Deployment Configs. Until then it is closed (private constructor) and does not extend {@link cdk.Construct}
Properties
| Name | Type | Description |
|---|---|---|
| static ALL_AT_ONCE | IEcs |
static ALL_AT_ONCE
Type:
IEcs
Methods
| Name | Description |
|---|---|
| static from | Import a custom Deployment Configuration for an ECS Deployment Group defined outside the CDK. |
static fromEcsDeploymentConfigName(_scope, _id, ecsDeploymentConfigName)
public static fromEcsDeploymentConfigName(_scope: Construct, _id: string, ecsDeploymentConfigName: string): IEcsDeploymentConfig
Parameters
- _scope
Construct— the parent Construct for this new Construct. - _id
string— the logical ID of this new Construct. - ecsDeploymentConfigName
string— the name of the referenced custom Deployment Configuration.
Returns
Import a custom Deployment Configuration for an ECS Deployment Group defined outside the CDK.

.NET
Java
Python
TypeScript (