aws-cdk-lib.aws_codedeploy.LambdaDeploymentGroupAttributes

interface LambdaDeploymentGroupAttributes

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.LambdaDeploymentGroupAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#LambdaDeploymentGroupAttributes
Javasoftware.amazon.awscdk.services.codedeploy.LambdaDeploymentGroupAttributes
Pythonaws_cdk.aws_codedeploy.LambdaDeploymentGroupAttributes
TypeScript (source)aws-cdk-lib » aws_codedeploy » LambdaDeploymentGroupAttributes

Properties of a reference to a CodeDeploy Lambda Deployment Group.

See also: LambdaDeploymentGroup#fromLambdaDeploymentGroupAttributes

Example

declare const application: codedeploy.LambdaApplication;
const deploymentGroup = codedeploy.LambdaDeploymentGroup.fromLambdaDeploymentGroupAttributes(this, 'ExistingCodeDeployDeploymentGroup', {
  application,
  deploymentGroupName: 'MyExistingDeploymentGroup',
});

Properties

NameTypeDescription
applicationILambdaApplicationThe reference to the CodeDeploy Lambda Application that this Deployment Group belongs to.
deploymentGroupNamestringThe physical, human-readable name of the CodeDeploy Lambda Deployment Group that we are referencing.
deploymentConfig?ILambdaDeploymentConfigThe Deployment Configuration this Deployment Group uses.

application

Type: ILambdaApplication

The reference to the CodeDeploy Lambda Application that this Deployment Group belongs to.


deploymentGroupName

Type: string

The physical, human-readable name of the CodeDeploy Lambda Deployment Group that we are referencing.


deploymentConfig?

Type: ILambdaDeploymentConfig (optional, default: LambdaDeploymentConfig.CANARY_10PERCENT_5MINUTES)

The Deployment Configuration this Deployment Group uses.