interface LambdaDeploymentGroupAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodeDeploy.LambdaDeploymentGroupAttributes |
Java | software.amazon.awscdk.services.codedeploy.LambdaDeploymentGroupAttributes |
Python | aws_cdk.aws_codedeploy.LambdaDeploymentGroupAttributes |
TypeScript (source) | @aws-cdk/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
Name | Type | Description |
---|---|---|
application | ILambda | The reference to the CodeDeploy Lambda Application that this Deployment Group belongs to. |
deployment | string | The physical, human-readable name of the CodeDeploy Lambda Deployment Group that we are referencing. |
deployment | ILambda | The Deployment Configuration this Deployment Group uses. |
application
Type:
ILambda
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:
ILambda
(optional, default: LambdaDeploymentConfig.CANARY_10PERCENT_5MINUTES)
The Deployment Configuration this Deployment Group uses.