Show / Hide Table of Contents

Interface IEcsDeploymentGroupAttributes

Properties of a reference to a CodeDeploy ECS Deployment Group.

Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEcsDeploymentGroupAttributes
Syntax (vb)
Public Interface IEcsDeploymentGroupAttributes
Remarks

See: EcsDeploymentGroup#fromEcsDeploymentGroupAttributes

ExampleMetadata: infused

Examples
EcsApplication application;

             var deploymentGroup = EcsDeploymentGroup.FromEcsDeploymentGroupAttributes(this, "ExistingCodeDeployDeploymentGroup", new EcsDeploymentGroupAttributes {
                 Application = application,
                 DeploymentGroupName = "MyExistingDeploymentGroup"
             });

Synopsis

Properties

Application

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

DeploymentConfig

The Deployment Configuration this Deployment Group uses.

DeploymentGroupName

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

Properties

Application

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

IApplicationRef Application { get; }
Property Value

IApplicationRef

Remarks

See: EcsDeploymentGroup#fromEcsDeploymentGroupAttributes

ExampleMetadata: infused

DeploymentConfig

The Deployment Configuration this Deployment Group uses.

IDeploymentConfigRef? DeploymentConfig { get; }
Property Value

IDeploymentConfigRef

Remarks

Default: EcsDeploymentConfig.ALL_AT_ONCE

DeploymentGroupName

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

string DeploymentGroupName { get; }
Property Value

string

Remarks

See: EcsDeploymentGroup#fromEcsDeploymentGroupAttributes

ExampleMetadata: infused

Back to top Generated by DocFX