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

Http

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

Information about an HTTP request.

interface Http {
ClientIp?: string | null;
HttpMethod?: string | null;
HttpStatus?: number | null;
HttpURL?: string | null;
UserAgent?: string | null;
}

§Properties

§
ClientIp?: string | null
[src]

The IP address of the requestor.

§
HttpMethod?: string | null
[src]

The request method.

§
HttpStatus?: number | null
[src]

The response status.

§
HttpURL?: string | null
[src]

The request URL.

§
UserAgent?: string | null
[src]

The request's user agent string.