Class ServerDeploymentGroup
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.codedeploy.ServerDeploymentGroup
- All Implemented Interfaces:
IConstruct,IDependable,IResource,IServerDeploymentGroup,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.392Z")
@Stability(Stable)
public class ServerDeploymentGroup
extends Resource
implements IServerDeploymentGroup
A CodeDeploy Deployment Group that deploys to EC2/on-premise instances.
Example:
import software.amazon.awscdk.services.elasticloadbalancing.*;
LoadBalancer lb;
lb.addListener(LoadBalancerListener.builder()
.externalPort(80)
.build());
ServerDeploymentGroup deploymentGroup = ServerDeploymentGroup.Builder.create(this, "DeploymentGroup")
.loadBalancer(LoadBalancer.classic(lb))
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.codedeploy.IServerDeploymentGroup
IServerDeploymentGroup.Jsii$Default, IServerDeploymentGroup.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedServerDeploymentGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedServerDeploymentGroup(software.amazon.jsii.JsiiObjectRef objRef) ServerDeploymentGroup(software.constructs.Construct scope, String id) ServerDeploymentGroup(software.constructs.Construct scope, String id, ServerDeploymentGroupProps props) -
Method Summary
Modifier and TypeMethodDescriptionvoidAssociates an additional alarm with this Deployment Group.voidAdds an additional auto-scaling group to this Deployment Group.static IServerDeploymentGroupfromServerDeploymentGroupAttributes(software.constructs.Construct scope, String id, ServerDeploymentGroupAttributes attrs) Import an EC2/on-premise Deployment Group defined either outside the CDK app, or in a different region.getRole()validate()Validate the current construct.Methods inherited from class software.amazon.awscdk.core.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResourceMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesizeMethods inherited from class software.constructs.Construct
toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.awscdk.core.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
ServerDeploymentGroup
protected ServerDeploymentGroup(software.amazon.jsii.JsiiObjectRef objRef) -
ServerDeploymentGroup
protected ServerDeploymentGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ServerDeploymentGroup
@Stability(Stable) public ServerDeploymentGroup(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable ServerDeploymentGroupProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props-
-
ServerDeploymentGroup
@Stability(Stable) public ServerDeploymentGroup(@NotNull software.constructs.Construct scope, @NotNull String id) - Parameters:
scope- This parameter is required.id- This parameter is required.
-
-
Method Details
-
fromServerDeploymentGroupAttributes
@Stability(Stable) @NotNull public static IServerDeploymentGroup fromServerDeploymentGroupAttributes(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ServerDeploymentGroupAttributes attrs) Import an EC2/on-premise Deployment Group defined either outside the CDK app, or in a different region.- Parameters:
scope- the parent Construct for this new Construct. This parameter is required.id- the logical ID of this new Construct. This parameter is required.attrs- the properties of the referenced Deployment Group. This parameter is required.- Returns:
- a Construct representing a reference to an existing Deployment Group
-
addAlarm
Associates an additional alarm with this Deployment Group.- Parameters:
alarm- the alarm to associate with this Deployment Group. This parameter is required.
-
addAutoScalingGroup
Adds an additional auto-scaling group to this Deployment Group.- Parameters:
asg- the auto-scaling group to add to this Deployment Group. This parameter is required.
-
validate
Validate the current construct.This method can be implemented by derived constructs in order to perform validation logic. It is called on all constructs before synthesis.
-
getApplication
- Specified by:
getApplicationin interfaceIServerDeploymentGroup
-
getDeploymentConfig
- Specified by:
getDeploymentConfigin interfaceIServerDeploymentGroup
-
getDeploymentGroupArn
- Specified by:
getDeploymentGroupArnin interfaceIServerDeploymentGroup
-
getDeploymentGroupName
- Specified by:
getDeploymentGroupNamein interfaceIServerDeploymentGroup
-
getAutoScalingGroups
- Specified by:
getAutoScalingGroupsin interfaceIServerDeploymentGroup
-
getRole
- Specified by:
getRolein interfaceIServerDeploymentGroup
-