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
Remarks
See: EcsDeploymentGroup#fromEcsDeploymentGroupAttributes
ExampleMetadata: infused
DeploymentConfig
The Deployment Configuration this Deployment Group uses.
IDeploymentConfigRef? DeploymentConfig { get; }
Property Value
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
Remarks
See: EcsDeploymentGroup#fromEcsDeploymentGroupAttributes
ExampleMetadata: infused