Interface IDeploymentReference
A reference to a Deployment resource.
Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDeploymentReference
Syntax (vb)
Public Interface IDeploymentReference
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.AWS.AppConfig;
var deploymentReference = new DeploymentReference {
ApplicationId = "applicationId",
DeploymentNumber = "deploymentNumber",
EnvironmentId = "environmentId"
};
Synopsis
Properties
ApplicationId | The ApplicationId of the Deployment resource. |
DeploymentNumber | The DeploymentNumber of the Deployment resource. |
EnvironmentId | The EnvironmentId of the Deployment resource. |
Properties
ApplicationId
The ApplicationId of the Deployment resource.
string ApplicationId { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DeploymentNumber
The DeploymentNumber of the Deployment resource.
string DeploymentNumber { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
EnvironmentId
The EnvironmentId of the Deployment resource.
string EnvironmentId { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated