Interface LambdaDeploymentGroupAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LambdaDeploymentGroupAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.383Z")
@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());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forLambdaDeploymentGroupAttributes
static final class
An implementation forLambdaDeploymentGroupAttributes
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The reference to the CodeDeploy Lambda Application that this Deployment Group belongs to.default ILambdaDeploymentConfig
The Deployment Configuration this Deployment Group uses.The physical, human-readable name of the CodeDeploy Lambda Deployment Group that we are referencing.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplication
The reference to the CodeDeploy Lambda Application that this Deployment Group belongs to. -
getDeploymentGroupName
The physical, human-readable name of the CodeDeploy Lambda Deployment Group that we are referencing. -
getDeploymentConfig
The Deployment Configuration this Deployment Group uses.Default: LambdaDeploymentConfig.CANARY_10PERCENT_5MINUTES
-
builder
-