interface RouteAttributes
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppMesh.RouteAttributes | 
|  Java | software.amazon.awscdk.services.appmesh.RouteAttributes | 
|  Python | aws_cdk.aws_appmesh.RouteAttributes | 
|  TypeScript (source) | @aws-cdk/aws-appmesh»RouteAttributes | 
Interface with properties ncecessary to import a reusable Route.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
declare const virtualRouter: appmesh.VirtualRouter;
const routeAttributes: appmesh.RouteAttributes = {
  routeName: 'routeName',
  virtualRouter: virtualRouter,
};
Properties
| Name | Type | Description | 
|---|---|---|
| route | string | The name of the Route. | 
| virtual | IVirtual | The VirtualRouter the Route belongs to. | 
routeName
Type:
string
The name of the Route.
virtualRouter
Type:
IVirtual
The VirtualRouter the Route belongs to.
