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

CreateRouteRequest

import type { CreateRouteRequest } from "https://aws-api.deno.dev/v0.3/services/migrationhubrefactorspaces.ts?docs=full";
interface CreateRouteRequest {
ApplicationIdentifier: string;
ClientToken?: string | null;
EnvironmentIdentifier: string;
RouteType: RouteType;
ServiceIdentifier: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
UriPathRoute?: UriPathRouteInput | null;
}

§Properties

§
ApplicationIdentifier: string
[src]

The ID of the application within which the route is being created.

§
ClientToken?: string | null
[src]

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

§
EnvironmentIdentifier: string
[src]

The ID of the environment in which the route is created.

§
RouteType: RouteType
[src]

The route type of the route. DEFAULT indicates that all traffic that does not match another route is forwarded to the default route. Applications must have a default route before any other routes can be created. URI_PATH indicates a route that is based on a URI path.

§
ServiceIdentifier: string
[src]

The ID of the service in which the route is created. Traffic that matches this route is forwarded to this service.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags to assign to the route. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..

§
UriPathRoute?: UriPathRouteInput | null
[src]

The configuration for the URI path route type.