Interface EcsDeploymentGroupAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EcsDeploymentGroupAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:22.995Z") @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:
  • Method Details

    • getApplication

      @Stability(Stable) @NotNull IEcsApplication getApplication()
      The reference to the CodeDeploy ECS Application that this Deployment Group belongs to.
    • getDeploymentGroupName

      @Stability(Stable) @NotNull String getDeploymentGroupName()
      The physical, human-readable name of the CodeDeploy ECS Deployment Group that we are referencing.
    • getDeploymentConfig

      @Stability(Stable) @Nullable default IEcsDeploymentConfig getDeploymentConfig()
      The Deployment Configuration this Deployment Group uses.

      Default: EcsDeploymentConfig.ALL_AT_ONCE

    • builder

      @Stability(Stable) static EcsDeploymentGroupAttributes.Builder builder()
      Returns:
      a EcsDeploymentGroupAttributes.Builder of EcsDeploymentGroupAttributes