@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-07-01T09:58:41.419Z")
public interface EcsDeploymentGroupAttributes
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.
|
java.lang.String |
getDeploymentGroupName()
The physical, human-readable name of the CodeDeploy ECS Deployment Group that we are referencing.
|
IEcsApplication getApplication()
java.lang.String getDeploymentGroupName()
default IEcsDeploymentConfig getDeploymentConfig()
Default: EcsDeploymentConfig.ALL_AT_ONCE
static EcsDeploymentGroupAttributes.Builder builder()