Class DeploymentReference
A reference to a Deployment resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DeploymentReference : IDeploymentReference
Syntax (vb)
Public Class DeploymentReference Implements 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.Apigatewayv2;
var deploymentReference = new DeploymentReference {
ApiId = "apiId",
DeploymentId = "deploymentId"
};
Synopsis
Constructors
DeploymentReference() | A reference to a Deployment resource. |
Properties
ApiId | The ApiId of the Deployment resource. |
DeploymentId | The DeploymentId of the Deployment resource. |
Constructors
DeploymentReference()
A reference to a Deployment resource.
public DeploymentReference()
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.Apigatewayv2;
var deploymentReference = new DeploymentReference {
ApiId = "apiId",
DeploymentId = "deploymentId"
};
Properties
ApiId
The ApiId of the Deployment resource.
public string ApiId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DeploymentId
The DeploymentId of the Deployment resource.
public string DeploymentId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated