Interface ServerDeploymentGroupAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ServerDeploymentGroupAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.394Z")
@Stability(Stable)
public interface ServerDeploymentGroupAttributes
extends software.amazon.jsii.JsiiSerializable
Properties of a reference to a CodeDeploy EC2/on-premise Deployment Group.
Example:
ServerApplication application; IServerDeploymentGroup deploymentGroup = ServerDeploymentGroup.fromServerDeploymentGroupAttributes(this, "ExistingCodeDeployDeploymentGroup", ServerDeploymentGroupAttributes.builder() .application(application) .deploymentGroupName("MyExistingDeploymentGroup") .build());
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forServerDeploymentGroupAttributes
static final class
An implementation forServerDeploymentGroupAttributes
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The reference to the CodeDeploy EC2/on-premise Application that this Deployment Group belongs to.default IServerDeploymentConfig
The Deployment Configuration this Deployment Group uses.The physical, human-readable name of the CodeDeploy EC2/on-premise Deployment Group that we are referencing.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplication
The reference to the CodeDeploy EC2/on-premise Application that this Deployment Group belongs to. -
getDeploymentGroupName
The physical, human-readable name of the CodeDeploy EC2/on-premise Deployment Group that we are referencing. -
getDeploymentConfig
The Deployment Configuration this Deployment Group uses.Default: ServerDeploymentConfig#OneAtATime
-
builder
-