Stone.js API
    Preparing search index...

    A canonical HTTP request derived from any AWS HTTP Lambda event.

    interface NormalizedHttpEvent {
        body?: string;
        cookies: string[];
        headers: Record<string, string>;
        isBase64Encoded: boolean;
        method: string;
        path: string;
        rawQueryString: string;
        sourceIp: string;
        version: AwsHttpEventVersion;
    }
    Index
    body?: string

    The raw request body as delivered by AWS (string or undefined).

    cookies: string[]

    Raw cookie strings (e.g. ['a=1', 'b=2']).

    headers: Record<string, string>

    Lower-cased headers; multi-value headers joined with , .

    isBase64Encoded: boolean

    Whether body is base64-encoded.

    method: string

    The HTTP method (upper-case).

    path: string

    The request path (no query string).

    rawQueryString: string

    The raw query string (without leading ?), fidelity-preserving.

    sourceIp: string

    The best-effort client source IP.

    The detected trigger family.