Interface EcsDeploymentGroupAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EcsDeploymentGroupAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:47.658Z")
@Stability(Stable)
public interface EcsDeploymentGroupAttributes
extends software.amazon.jsii.JsiiSerializable
Properties of a reference to a CodeDeploy ECS Deployment Group.
Example:
EcsApplication application;
IEcsDeploymentGroup deploymentGroup = EcsDeploymentGroup.fromEcsDeploymentGroupAttributes(this, "ExistingCodeDeployDeploymentGroup", EcsDeploymentGroupAttributes.builder()
.application(application)
.deploymentGroupName("MyExistingDeploymentGroup")
.build());
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEcsDeploymentGroupAttributesstatic final classAn implementation forEcsDeploymentGroupAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The reference to the CodeDeploy ECS Application that this Deployment Group belongs to.default IEcsDeploymentConfigThe Deployment Configuration this Deployment Group uses.The physical, human-readable name of the CodeDeploy ECS Deployment Group that we are referencing.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplication
The reference to the CodeDeploy ECS Application that this Deployment Group belongs to. -
getDeploymentGroupName
The physical, human-readable name of the CodeDeploy ECS Deployment Group that we are referencing. -
getDeploymentConfig
The Deployment Configuration this Deployment Group uses.Default: EcsDeploymentConfig.ALL_AT_ONCE
-
builder
-