API Reference
    Preparing search index...
    APIGatewayProxyEventV2Schema: ZodObject<
        {
            body: ZodOptional<ZodString>;
            cookies: ZodOptional<ZodArray<ZodString, "many">>;
            headers: ZodRecord<ZodString, ZodString>;
            isBase64Encoded: ZodBoolean;
            pathParameters: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodString>>>;
            queryStringParameters: ZodOptional<ZodRecord<ZodString, ZodString>>;
            rawPath: ZodString;
            rawQueryString: ZodString;
            requestContext: ZodObject<
                {
                    accountId: ZodString;
                    apiId: ZodString;
                    authentication: ZodOptional<
                        ZodNullable<
                            ZodObject<
                                {
                                    clientCert: ZodOptional<
                                        ZodObject<
                                            {
                                                clientCertPem: ...;
                                                issuerDN: ...;
                                                serialNumber: ...;
                                                subjectDN: ...;
                                                validity: ...;
                                            },
                                            "strip",
                                            ZodTypeAny,
                                            {
                                                clientCertPem: ...;
                                                issuerDN: ...;
                                                serialNumber: ...;
                                                subjectDN: ...;
                                                validity: ...;
                                            },
                                            {
                                                clientCertPem: ...;
                                                issuerDN: ...;
                                                serialNumber: ...;
                                                subjectDN: ...;
                                                validity: ...;
                                            },
                                        >,
                                    >;
                                },
                                "strip",
                                ZodTypeAny,
                                {
                                    clientCert?: {
                                        clientCertPem: string;
                                        issuerDN: string;
                                        serialNumber: string;
                                        subjectDN: string;
                                        validity: { notAfter: ...; notBefore: ... };
                                    };
                                },
                                {
                                    clientCert?: {
                                        clientCertPem: string;
                                        issuerDN: string;
                                        serialNumber: string;
                                        subjectDN: string;
                                        validity: { notAfter: ...; notBefore: ... };
                                    };
                                },
                            >,
                        >,
                    >;
                    authorizer: ZodOptional<
                        ZodObject<
                            {
                                iam: ZodOptional<
                                    ZodObject<
                                        {
                                            accessKey: ZodOptional<(...)>;
                                            accountId: ZodOptional<(...)>;
                                            callerId: ZodOptional<(...)>;
                                            cognitoIdentity: ZodOptional<(...)>;
                                            principalOrgId: ZodOptional<(...)>;
                                            userArn: ZodOptional<(...)>;
                                            userId: ZodOptional<(...)>;
                                        },
                                        "strip",
                                        ZodTypeAny,
                                        {
                                            accessKey?: (...)
                                            | (...);
                                            accountId?: (...) | (...);
                                            callerId?: (...) | (...);
                                            cognitoIdentity?: (...) | (...) | (...);
                                            principalOrgId?: (...) | (...) | (...);
                                            userArn?: (...) | (...);
                                            userId?: (...) | (...);
                                        },
                                        {
                                            accessKey?: (...)
                                            | (...);
                                            accountId?: (...) | (...);
                                            callerId?: (...) | (...);
                                            cognitoIdentity?: (...) | (...) | (...);
                                            principalOrgId?: (...) | (...) | (...);
                                            userArn?: (...) | (...);
                                            userId?: (...) | (...);
                                        },
                                    >,
                                >;
                                jwt: ZodOptional<
                                    ZodObject<
                                        { claims: ZodRecord<(...), (...)>; scopes: ZodNullable<(...)> },
                                        "strip",
                                        ZodTypeAny,
                                        { claims: Record<(...), (...)>; scopes: (...) | (...) },
                                        { claims: Record<(...), (...)>; scopes: (...) | (...) },
                                    >,
                                >;
                                lambda: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodAny>>>;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                iam?: {
                                    accessKey?: string;
                                    accountId?: string;
                                    callerId?: string;
                                    cognitoIdentity?: | null
                                    | { amr: ...; identityId: ...; identityPoolId: ... };
                                    principalOrgId?: null | string;
                                    userArn?: string;
                                    userId?: string;
                                };
                                jwt?: { claims: Record<string, any>; scopes: null | (...)[] };
                                lambda?: null | Record<string, any>;
                            },
                            {
                                iam?: {
                                    accessKey?: string;
                                    accountId?: string;
                                    callerId?: string;
                                    cognitoIdentity?: | null
                                    | { amr: ...; identityId: ...; identityPoolId: ... };
                                    principalOrgId?: null | string;
                                    userArn?: string;
                                    userId?: string;
                                };
                                jwt?: { claims: Record<string, any>; scopes: null | (...)[] };
                                lambda?: null | Record<string, any>;
                            },
                        >,
                    >;
                    domainName: ZodString;
                    domainPrefix: ZodString;
                    http: ZodObject<
                        {
                            method: ZodEnum<
                                ["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"],
                            >;
                            path: ZodString;
                            protocol: ZodString;
                            sourceIp: ZodString;
                            userAgent: ZodString;
                        },
                        "strip",
                        ZodTypeAny,
                        {
                            method: | "GET"
                            | "POST"
                            | "PUT"
                            | "PATCH"
                            | "DELETE"
                            | "HEAD"
                            | "OPTIONS";
                            path: string;
                            protocol: string;
                            sourceIp: string;
                            userAgent: string;
                        },
                        {
                            method: | "GET"
                            | "POST"
                            | "PUT"
                            | "PATCH"
                            | "DELETE"
                            | "HEAD"
                            | "OPTIONS";
                            path: string;
                            protocol: string;
                            sourceIp: string;
                            userAgent: string;
                        },
                    >;
                    requestId: ZodString;
                    routeKey: ZodString;
                    stage: ZodString;
                    time: ZodString;
                    timeEpoch: ZodNumber;
                },
                "strip",
                ZodTypeAny,
                {
                    accountId: string;
                    apiId: string;
                    authentication?: | null
                    | {
                        clientCert?: {
                            clientCertPem: string;
                            issuerDN: string;
                            serialNumber: string;
                            subjectDN: string;
                            validity: { notAfter: string; notBefore: string };
                        };
                    };
                    authorizer?: {
                        iam?: {
                            accessKey?: string;
                            accountId?: string;
                            callerId?: string;
                            cognitoIdentity?: | null
                            | { amr: (...)[]; identityId: string; identityPoolId: string };
                            principalOrgId?: null | string;
                            userArn?: string;
                            userId?: string;
                        };
                        jwt?: { claims: Record<string, any>; scopes: null | string[] };
                        lambda?: null | Record<string, any>;
                    };
                    domainName: string;
                    domainPrefix: string;
                    http: {
                        method: | "GET"
                        | "POST"
                        | "PUT"
                        | "PATCH"
                        | "DELETE"
                        | "HEAD"
                        | "OPTIONS";
                        path: string;
                        protocol: string;
                        sourceIp: string;
                        userAgent: string;
                    };
                    requestId: string;
                    routeKey: string;
                    stage: string;
                    time: string;
                    timeEpoch: number;
                },
                {
                    accountId: string;
                    apiId: string;
                    authentication?: | null
                    | {
                        clientCert?: {
                            clientCertPem: string;
                            issuerDN: string;
                            serialNumber: string;
                            subjectDN: string;
                            validity: { notAfter: string; notBefore: string };
                        };
                    };
                    authorizer?: {
                        iam?: {
                            accessKey?: string;
                            accountId?: string;
                            callerId?: string;
                            cognitoIdentity?: | null
                            | { amr: (...)[]; identityId: string; identityPoolId: string };
                            principalOrgId?: null | string;
                            userArn?: string;
                            userId?: string;
                        };
                        jwt?: { claims: Record<string, any>; scopes: null | string[] };
                        lambda?: null | Record<string, any>;
                    };
                    domainName: string;
                    domainPrefix: string;
                    http: {
                        method: | "GET"
                        | "POST"
                        | "PUT"
                        | "PATCH"
                        | "DELETE"
                        | "HEAD"
                        | "OPTIONS";
                        path: string;
                        protocol: string;
                        sourceIp: string;
                        userAgent: string;
                    };
                    requestId: string;
                    routeKey: string;
                    stage: string;
                    time: string;
                    timeEpoch: number;
                },
            >;
            routeKey: ZodString;
            stageVariables: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodString>>>;
            version: ZodString;
        },
        "strip",
        ZodTypeAny,
        {
            body?: string;
            cookies?: string[];
            headers: Record<string, string>;
            isBase64Encoded: boolean;
            pathParameters?: null | Record<string, string>;
            queryStringParameters?: Record<string, string>;
            rawPath: string;
            rawQueryString: string;
            requestContext: {
                accountId: string;
                apiId: string;
                authentication?:
                    | null
                    | {
                        clientCert?: {
                            clientCertPem: string;
                            issuerDN: string;
                            serialNumber: string;
                            subjectDN: string;
                            validity: { notAfter: string; notBefore: string };
                        };
                    };
                authorizer?: {
                    iam?: {
                        accessKey?: string;
                        accountId?: string;
                        callerId?: string;
                        cognitoIdentity?: | null
                        | { amr: string[]; identityId: string; identityPoolId: string };
                        principalOrgId?: null | string;
                        userArn?: string;
                        userId?: string;
                    };
                    jwt?: { claims: Record<string, any>; scopes: null | string[] };
                    lambda?: null | Record<string, any>;
                };
                domainName: string;
                domainPrefix: string;
                http: {
                    method: | "GET"
                    | "POST"
                    | "PUT"
                    | "PATCH"
                    | "DELETE"
                    | "HEAD"
                    | "OPTIONS";
                    path: string;
                    protocol: string;
                    sourceIp: string;
                    userAgent: string;
                };
                requestId: string;
                routeKey: string;
                stage: string;
                time: string;
                timeEpoch: number;
            };
            routeKey: string;
            stageVariables?: null
            | Record<string, string>;
            version: string;
        },
        {
            body?: string;
            cookies?: string[];
            headers: Record<string, string>;
            isBase64Encoded: boolean;
            pathParameters?: null | Record<string, string>;
            queryStringParameters?: Record<string, string>;
            rawPath: string;
            rawQueryString: string;
            requestContext: {
                accountId: string;
                apiId: string;
                authentication?:
                    | null
                    | {
                        clientCert?: {
                            clientCertPem: string;
                            issuerDN: string;
                            serialNumber: string;
                            subjectDN: string;
                            validity: { notAfter: string; notBefore: string };
                        };
                    };
                authorizer?: {
                    iam?: {
                        accessKey?: string;
                        accountId?: string;
                        callerId?: string;
                        cognitoIdentity?: | null
                        | { amr: string[]; identityId: string; identityPoolId: string };
                        principalOrgId?: null | string;
                        userArn?: string;
                        userId?: string;
                    };
                    jwt?: { claims: Record<string, any>; scopes: null | string[] };
                    lambda?: null | Record<string, any>;
                };
                domainName: string;
                domainPrefix: string;
                http: {
                    method: | "GET"
                    | "POST"
                    | "PUT"
                    | "PATCH"
                    | "DELETE"
                    | "HEAD"
                    | "OPTIONS";
                    path: string;
                    protocol: string;
                    sourceIp: string;
                    userAgent: string;
                };
                requestId: string;
                routeKey: string;
                stage: string;
                time: string;
                timeEpoch: number;
            };
            routeKey: string;
            stageVariables?: null
            | Record<string, string>;
            version: string;
        },
    > = ...

    A zod schema for an API Gateway HTTP API Proxy event

    {
    "version": "2.0",
    "routeKey": "$default",
    "rawPath": "/my/path",
    "rawQueryString": "parameter1=value1&parameter1=value2&parameter2=value",
    "cookies": ["cookie1", "cookie2"],
    "headers": {
    "header1": "value1",
    "header2": "value1,value2"
    },
    "queryStringParameters": {
    "parameter1": "value1,value2",
    "parameter2": "value"
    },
    "requestContext": {
    "accountId": "123456789012",
    "apiId": "api-id",
    "authentication": {}
    "domainName": "id.execute-api.us-east-1.amazonaws.com",
    "domainPrefix": "id",
    "http": {
    "method": "POST",
    "path": "/my/path",
    "protocol": "HTTP/1.1",
    "sourceIp": "...",
    "userAgent": "..."
    },
    "requestId": "...",
    "routeKey": "$default",
    "stage": "$default",
    "time": "12/Mar/2020:19:03:58 +0000",
    "timeEpoch": 1583348638390
    },
    "body": "Hello from Lambda",
    "pathParameters": {},
    "isBase64Encoded": false,
    "stageVariables": {}
    }