Interface LambdaDeploymentGroupAttributes

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

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:07.102Z") @Stability(Stable) public interface LambdaDeploymentGroupAttributes extends software.amazon.jsii.JsiiSerializable
Properties of a reference to a CodeDeploy Lambda Deployment Group.

Example:

 LambdaApplication application;
 ILambdaDeploymentGroup deploymentGroup = LambdaDeploymentGroup.fromLambdaDeploymentGroupAttributes(this, "ExistingCodeDeployDeploymentGroup", LambdaDeploymentGroupAttributes.builder()
         .application(application)
         .deploymentGroupName("MyExistingDeploymentGroup")
         .build());
 

See Also: