@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-17T17:31:20.202Z") @Stability(value=Stable) public interface EcsDeploymentGroupAttributes extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codedeploy.*;
EcsApplication ecsApplication;
IEcsDeploymentConfig ecsDeploymentConfig;
EcsDeploymentGroupAttributes ecsDeploymentGroupAttributes = EcsDeploymentGroupAttributes.builder()
.application(ecsApplication)
.deploymentGroupName("deploymentGroupName")
// the properties below are optional
.deploymentConfig(ecsDeploymentConfig)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EcsDeploymentGroupAttributes.Builder
A builder for
EcsDeploymentGroupAttributes |
static class |
EcsDeploymentGroupAttributes.Jsii$Proxy
An implementation for
EcsDeploymentGroupAttributes |
| Modifier and Type | Method and Description |
|---|---|
static EcsDeploymentGroupAttributes.Builder |
builder() |
IEcsApplication |
getApplication()
The reference to the CodeDeploy ECS Application that this Deployment Group belongs to.
|
default IEcsDeploymentConfig |
getDeploymentConfig()
The Deployment Configuration this Deployment Group uses.
|
String |
getDeploymentGroupName()
The physical, human-readable name of the CodeDeploy ECS Deployment Group that we are referencing.
|
@Stability(value=Stable) @NotNull IEcsApplication getApplication()
@Stability(value=Stable) @NotNull String getDeploymentGroupName()
@Stability(value=Stable) @Nullable default IEcsDeploymentConfig getDeploymentConfig()
Default: EcsDeploymentConfig.ALL_AT_ONCE
@Stability(value=Stable) static EcsDeploymentGroupAttributes.Builder builder()
Copyright © 2022. All rights reserved.