aws-cdk-lib.aws_codedeploy.EcsDeploymentGroupAttributes

interface EcsDeploymentGroupAttributes

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.EcsDeploymentGroupAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#EcsDeploymentGroupAttributes
Javasoftware.amazon.awscdk.services.codedeploy.EcsDeploymentGroupAttributes
Pythonaws_cdk.aws_codedeploy.EcsDeploymentGroupAttributes
TypeScript (source)aws-cdk-lib » aws_codedeploy » EcsDeploymentGroupAttributes

Properties of a reference to a CodeDeploy ECS Deployment Group.

See also: EcsDeploymentGroup#fromEcsDeploymentGroupAttributes

Example

declare const application: codedeploy.EcsApplication;
const deploymentGroup = codedeploy.EcsDeploymentGroup.fromEcsDeploymentGroupAttributes(this, 'ExistingCodeDeployDeploymentGroup', {
  application,
  deploymentGroupName: 'MyExistingDeploymentGroup',
});

Properties

NameTypeDescription
applicationIEcsApplicationThe reference to the CodeDeploy ECS Application that this Deployment Group belongs to.
deploymentGroupNamestringThe physical, human-readable name of the CodeDeploy ECS Deployment Group that we are referencing.
deploymentConfig?IEcsDeploymentConfigThe Deployment Configuration this Deployment Group uses.

application

Type: IEcsApplication

The reference to the CodeDeploy ECS Application that this Deployment Group belongs to.


deploymentGroupName

Type: string

The physical, human-readable name of the CodeDeploy ECS Deployment Group that we are referencing.


deploymentConfig?

Type: IEcsDeploymentConfig (optional, default: EcsDeploymentConfig.ALL_AT_ONCE)

The Deployment Configuration this Deployment Group uses.