DeploymentGroupReference

class aws_cdk.interfaces.aws_codedeploy.DeploymentGroupReference(*, application_name, deployment_group_name)

Bases: object

A reference to a DeploymentGroup resource.

Parameters:
  • application_name (str) – The ApplicationName of the DeploymentGroup resource.

  • deployment_group_name (str) – The DeploymentGroupName of the DeploymentGroup resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.interfaces import aws_codedeploy as interfaces_codedeploy

deployment_group_reference = interfaces_codedeploy.DeploymentGroupReference(
    application_name="applicationName",
    deployment_group_name="deploymentGroupName"
)

Attributes

application_name

The ApplicationName of the DeploymentGroup resource.

deployment_group_name

The DeploymentGroupName of the DeploymentGroup resource.