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

UriPathRouteInput

import type { UriPathRouteInput } from "https://aws-api.deno.dev/v0.4/services/migrationhubrefactorspaces.ts?docs=full";

The configuration for the URI path route type.

interface UriPathRouteInput {
ActivationState: RouteActivationState;
IncludeChildPaths?: boolean | null;
Methods?: HttpMethod[] | null;
SourcePath: string;
}

§Properties

§
ActivationState: RouteActivationState
[src]

If set to ACTIVE, traffic is forwarded to this route’s service after the route is created.

§
IncludeChildPaths?: boolean | null
[src]

Indicates whether to match all subpaths of the given source path. If this value is false, requests must match the source path exactly before they are forwarded to this route's service.

§
Methods?: HttpMethod[] | null
[src]

A list of HTTP methods to match. An empty list matches all values. If a method is present, only HTTP requests using that method are forwarded to this route’s service.

§
SourcePath: string
[src]

The path to use to match traffic. Paths must start with / and are relative to the base of the application.