Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RouteData

import type { RouteData } from "https://aws-api.deno.dev/v0.3/services/appmesh.ts?docs=full";

An object that represents a route returned by a describe operation.

interface RouteData {
meshName: string;
metadata: ResourceMetadata;
routeName: string;
spec: RouteSpec;
status: RouteStatus;
virtualRouterName: string;
}

§Properties

§
meshName: string
[src]

The name of the service mesh that the route resides in.

§

The associated metadata for the route.

§
routeName: string
[src]

The name of the route.

§

The specifications of the route.

§

The status of the route.

§
virtualRouterName: string
[src]

The virtual router that the route is associated with.