Interface IRouteAttributes
Interface with properties ncecessary to import a reusable Route.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRouteAttributes
Syntax (vb)
Public Interface IRouteAttributes
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.AppMesh;
VirtualRouter virtualRouter;
var routeAttributes = new RouteAttributes {
RouteName = "routeName",
VirtualRouter = virtualRouter
};
Synopsis
Properties
RouteName | The name of the Route. |
VirtualRouter | The VirtualRouter the Route belongs to. |
Properties
RouteName
The name of the Route.
string RouteName { get; }
Property Value
System.String
VirtualRouter
The VirtualRouter the Route belongs to.
IVirtualRouter VirtualRouter { get; }
Property Value