Show / Hide Table of Contents

Class DeploymentGroupReference

A reference to a DeploymentGroup resource.

Inheritance
object
DeploymentGroupReference
Implements
IDeploymentGroupReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DeploymentGroupReference : IDeploymentGroupReference
Syntax (vb)
Public Class DeploymentGroupReference Implements IDeploymentGroupReference
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Interfaces.CodeDeploy;

            var deploymentGroupReference = new DeploymentGroupReference {
                ApplicationName = "applicationName",
                DeploymentGroupName = "deploymentGroupName"
            };

Synopsis

Constructors

DeploymentGroupReference()

A reference to a DeploymentGroup resource.

Properties

ApplicationName

The ApplicationName of the DeploymentGroup resource.

DeploymentGroupName

The DeploymentGroupName of the DeploymentGroup resource.

Constructors

DeploymentGroupReference()

A reference to a DeploymentGroup resource.

public DeploymentGroupReference()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Interfaces.CodeDeploy;

            var deploymentGroupReference = new DeploymentGroupReference {
                ApplicationName = "applicationName",
                DeploymentGroupName = "deploymentGroupName"
            };

Properties

ApplicationName

The ApplicationName of the DeploymentGroup resource.

public string ApplicationName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DeploymentGroupName

The DeploymentGroupName of the DeploymentGroup resource.

public string DeploymentGroupName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDeploymentGroupReference
Back to top Generated by DocFX