aws-cdk-lib.aws_codedeploy.ServerDeploymentGroupAttributes

interface ServerDeploymentGroupAttributes

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.ServerDeploymentGroupAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#ServerDeploymentGroupAttributes
Javasoftware.amazon.awscdk.services.codedeploy.ServerDeploymentGroupAttributes
Pythonaws_cdk.aws_codedeploy.ServerDeploymentGroupAttributes
TypeScript (source)aws-cdk-lib » aws_codedeploy » ServerDeploymentGroupAttributes

Properties of a reference to a CodeDeploy EC2/on-premise Deployment Group.

See also: [ServerDeploymentGroup# import](ServerDeploymentGroup# import)

Example

declare const application: codedeploy.ServerApplication;
const deploymentGroup = codedeploy.ServerDeploymentGroup.fromServerDeploymentGroupAttributes(
  this,
  'ExistingCodeDeployDeploymentGroup', {
    application,
    deploymentGroupName: 'MyExistingDeploymentGroup',
  },
);

Properties

NameTypeDescription
applicationIServerApplicationThe reference to the CodeDeploy EC2/on-premise Application that this Deployment Group belongs to.
deploymentGroupNamestringThe physical, human-readable name of the CodeDeploy EC2/on-premise Deployment Group that we are referencing.
deploymentConfig?IServerDeploymentConfigThe Deployment Configuration this Deployment Group uses.

application

Type: IServerApplication

The reference to the CodeDeploy EC2/on-premise Application that this Deployment Group belongs to.


deploymentGroupName

Type: string

The physical, human-readable name of the CodeDeploy EC2/on-premise Deployment Group that we are referencing.


deploymentConfig?

Type: IServerDeploymentConfig (optional, default: ServerDeploymentConfig#OneAtATime)

The Deployment Configuration this Deployment Group uses.