Class RouteServerReference
A reference to a RouteServer resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
RouteServerId
The Id of the RouteServer resource.
public string RouteServerId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated