@resistdesign/voltra
    Preparing search index...

    Interface IAWSCloudFunctionEvent

    An AWS specific Cloud Function event.

    interface IAWSCloudFunctionEvent {
        body?: string;
        headers?: Record<string, string>;
        httpMethod?: string;
        multiValueHeaders?: Record<string, string[]>;
        path?: string;
        requestContext?: Record<any, any>;
    }
    Index

    Properties

    body?: string

    Raw request body string (usually JSON).

    headers?: Record<string, string>

    Single-value HTTP headers.

    httpMethod?: string

    HTTP method for the incoming request.

    multiValueHeaders?: Record<string, string[]>

    Multi-value HTTP headers keyed by header name.

    path?: string

    Request path string as provided by the AWS event.

    requestContext?: Record<any, any>

    AWS request context containing authorizer info and identity details.