Show / Hide Table of Contents

Class DeploymentReference

A reference to a Deployment resource.

Inheritance
object
DeploymentReference
Implements
IDeploymentReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

DeploymentId

The DeploymentId of the Deployment resource.

public string DeploymentId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDeploymentReference
Back to top Generated by DocFX