All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cloudshiftdev.awscdk.services.codedeploy.ILambdaDeploymentGroup.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package io.cloudshiftdev.awscdk.services.codedeploy

import io.cloudshiftdev.awscdk.IResource
import io.cloudshiftdev.awscdk.RemovalPolicy
import io.cloudshiftdev.awscdk.ResourceEnvironment
import io.cloudshiftdev.awscdk.Stack
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import io.cloudshiftdev.constructs.Node
import kotlin.String

/**
 * Interface for a Lambda deployment groups.
 */
public interface ILambdaDeploymentGroup : IResource {
  /**
   * The reference to the CodeDeploy Lambda Application that this Deployment Group belongs to.
   */
  public fun application(): ILambdaApplication

  /**
   * The Deployment Configuration this Group uses.
   */
  public fun deploymentConfig(): ILambdaDeploymentConfig

  /**
   * The ARN of this Deployment Group.
   */
  public fun deploymentGroupArn(): String

  /**
   * The physical name of the CodeDeploy Deployment Group.
   */
  public fun deploymentGroupName(): String

  private class Wrapper(
    cdkObject: software.amazon.awscdk.services.codedeploy.ILambdaDeploymentGroup,
  ) : CdkObject(cdkObject),
      ILambdaDeploymentGroup {
    /**
     * The reference to the CodeDeploy Lambda Application that this Deployment Group belongs to.
     */
    override fun application(): ILambdaApplication =
        unwrap(this).getApplication().let(ILambdaApplication::wrap)

    /**
     * Apply the given removal policy to this resource.
     *
     * The Removal Policy controls what happens to this resource when it stops
     * being managed by CloudFormation, either because you've removed it from the
     * CDK application or because you've made a change that requires the resource
     * to be replaced.
     *
     * The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS
     * account for data recovery and cleanup later (`RemovalPolicy.RETAIN`).
     *
     * @param policy 
     */
    override fun applyRemovalPolicy(policy: RemovalPolicy) {
      unwrap(this).applyRemovalPolicy(policy.let(RemovalPolicy.Companion::unwrap))
    }

    /**
     * The Deployment Configuration this Group uses.
     */
    override fun deploymentConfig(): ILambdaDeploymentConfig =
        unwrap(this).getDeploymentConfig().let(ILambdaDeploymentConfig::wrap)

    /**
     * The ARN of this Deployment Group.
     */
    override fun deploymentGroupArn(): String = unwrap(this).getDeploymentGroupArn()

    /**
     * The physical name of the CodeDeploy Deployment Group.
     */
    override fun deploymentGroupName(): String = unwrap(this).getDeploymentGroupName()

    /**
     * The environment this resource belongs to.
     *
     * For resources that are created and managed by the CDK
     * (generally, those created by creating new class instances like Role, Bucket, etc.),
     * this is always the same as the environment of the stack they belong to;
     * however, for imported resources
     * (those obtained from static methods like fromRoleArn, fromBucketName, etc.),
     * that might be different than the stack they were imported into.
     */
    override fun env(): ResourceEnvironment = unwrap(this).getEnv().let(ResourceEnvironment::wrap)

    override fun node(): Node = unwrap(this).getNode().let(Node::wrap)

    /**
     * The stack in which this resource is defined.
     */
    override fun stack(): Stack = unwrap(this).getStack().let(Stack::wrap)
  }

  public companion object {
    internal fun wrap(cdkObject: software.amazon.awscdk.services.codedeploy.ILambdaDeploymentGroup):
        ILambdaDeploymentGroup = CdkObjectWrappers.wrap(cdkObject) as? ILambdaDeploymentGroup ?:
        Wrapper(cdkObject)

    internal fun unwrap(wrapped: ILambdaDeploymentGroup):
        software.amazon.awscdk.services.codedeploy.ILambdaDeploymentGroup = (wrapped as
        CdkObject).cdkObject as software.amazon.awscdk.services.codedeploy.ILambdaDeploymentGroup
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy