Interface IDeploymentGroupReference
A reference to a DeploymentGroup resource.
Namespace: Amazon.CDK.Interfaces.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDeploymentGroupReference
Syntax (vb)
Public Interface 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
Properties
| ApplicationName | The ApplicationName of the DeploymentGroup resource. |
| DeploymentGroupName | The DeploymentGroupName of the DeploymentGroup resource. |
Properties
ApplicationName
The ApplicationName of the DeploymentGroup resource.
string ApplicationName { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DeploymentGroupName
The DeploymentGroupName of the DeploymentGroup resource.
string DeploymentGroupName { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated