Show / Hide Table of Contents

Class RouteServerReference

A reference to a RouteServer resource.

Inheritance
object
RouteServerReference
Implements
IRouteServerReference
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.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RouteServerReference : IRouteServerReference
Syntax (vb)
Public Class RouteServerReference Implements IRouteServerReference
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.EC2;

            var routeServerReference = new RouteServerReference {
                RouteServerArn = "routeServerArn",
                RouteServerId = "routeServerId"
            };

Synopsis

Constructors

RouteServerReference()

A reference to a RouteServer resource.

Properties

RouteServerArn

The ARN of the RouteServer resource.

RouteServerId

The Id of the RouteServer resource.

Constructors

RouteServerReference()

A reference to a RouteServer resource.

public RouteServerReference()
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.EC2;

            var routeServerReference = new RouteServerReference {
                RouteServerArn = "routeServerArn",
                RouteServerId = "routeServerId"
            };

Properties

RouteServerArn

The ARN of the RouteServer resource.

public string RouteServerArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

RouteServerId

The Id of the RouteServer resource.

public string RouteServerId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IRouteServerReference
Back to top Generated by DocFX