Class RouteTableReference
A reference to a RouteTable resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RouteTableReference : IRouteTableReference
Syntax (vb)
Public Class RouteTableReference Implements IRouteTableReference
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.EC2;
var routeTableReference = new RouteTableReference {
RouteTableId = "routeTableId"
};
Synopsis
Constructors
RouteTableReference() | A reference to a RouteTable resource. |
Properties
RouteTableId | The RouteTableId of the RouteTable resource. |
Constructors
RouteTableReference()
A reference to a RouteTable resource.
public RouteTableReference()
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.EC2;
var routeTableReference = new RouteTableReference {
RouteTableId = "routeTableId"
};
Properties
RouteTableId
The RouteTableId of the RouteTable resource.
public string RouteTableId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated