APIGatewayEventRequestContext: {
    accountId: string;
    apiId: string;
    authorizer?:
        | null
        | { integrationLatency: number; principalId: string }
        | { claims: Record<string, any>; scopes?: string[] };
    connectedAt?: null | number;
    connectionId?: null | string;
    deploymentId?: null | string;
    domainName?: null | string;
    domainPrefix?: null | string;
    eventType?: null | "CONNECT" | "MESSAGE" | "DISCONNECT";
    extendedRequestId?: null | string;
    httpMethod:
        | "GET"
        | "POST"
        | "PUT"
        | "PATCH"
        | "DELETE"
        | "HEAD"
        | "OPTIONS";
    identity: {
        accessKey?: null
        | string;
        accountId?: null | string;
        apiKey?: null | string;
        apiKeyId?: null | string;
        caller?: null | string;
        clientCert?:
            | null
            | {
                clientCertPem: string;
                issuerDN: string;
                serialNumber: string;
                subjectDN: string;
                validity: { notAfter: string; notBefore: string };
            };
        cognitoAuthenticationProvider?: null
        | string;
        cognitoAuthenticationType?: null | string;
        cognitoIdentityId?: null | string;
        cognitoIdentityPoolId?: null | string;
        principalOrgId?: null | string;
        sourceIp?: string;
        user?: null | string;
        userAgent?: null | string;
        userArn?: null | string;
    };
    messageDirection?: null
    | string;
    messageId?: null | string;
    operationName?: null | string;
    path: string;
    protocol: string;
    requestId: string;
    requestTime: string;
    requestTimeEpoch: number;
    resourceId?: null | string;
    resourcePath: string;
    routeKey?: null | string;
    stage: string;
}

A zod schema for an API Gateway Event Request Context

Type declaration

  • accountId: string
  • apiId: string
  • Optionalauthorizer?:
        | null
        | { integrationLatency: number; principalId: string }
        | { claims: Record<string, any>; scopes?: string[] }
  • OptionalconnectedAt?: null | number
  • OptionalconnectionId?: null | string
  • OptionaldeploymentId?: null | string
  • OptionaldomainName?: null | string
  • OptionaldomainPrefix?: null | string
  • OptionaleventType?: null | "CONNECT" | "MESSAGE" | "DISCONNECT"
  • OptionalextendedRequestId?: null | string
  • httpMethod: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS"
  • identity: {
        accessKey?: null | string;
        accountId?: null | string;
        apiKey?: null | string;
        apiKeyId?: null | string;
        caller?: null | string;
        clientCert?:
            | null
            | {
                clientCertPem: string;
                issuerDN: string;
                serialNumber: string;
                subjectDN: string;
                validity: { notAfter: string; notBefore: string };
            };
        cognitoAuthenticationProvider?: null
        | string;
        cognitoAuthenticationType?: null | string;
        cognitoIdentityId?: null | string;
        cognitoIdentityPoolId?: null | string;
        principalOrgId?: null | string;
        sourceIp?: string;
        user?: null | string;
        userAgent?: null | string;
        userArn?: null | string;
    }
    • OptionalaccessKey?: null | string
    • OptionalaccountId?: null | string
    • OptionalapiKey?: null | string
    • OptionalapiKeyId?: null | string
    • Optionalcaller?: null | string
    • OptionalclientCert?:
          | null
          | {
              clientCertPem: string;
              issuerDN: string;
              serialNumber: string;
              subjectDN: string;
              validity: { notAfter: string; notBefore: string };
          }
    • OptionalcognitoAuthenticationProvider?: null | string
    • OptionalcognitoAuthenticationType?: null | string
    • OptionalcognitoIdentityId?: null | string
    • OptionalcognitoIdentityPoolId?: null | string
    • OptionalprincipalOrgId?: null | string
    • OptionalsourceIp?: string

      When invoking the API Gateway REST API using the Test Invoke feature, the sourceIp is hardcoded to test-invoke-source-ip. This is a stopgap solution to allow customers to test their API and have successful parsing.

      See aws-powertools/powertools-lambda-python#1562 for more information.

    • Optionaluser?: null | string
    • OptionaluserAgent?: null | string
    • OptionaluserArn?: null | string
  • OptionalmessageDirection?: null | string
  • OptionalmessageId?: null | string
  • OptionaloperationName?: null | string
  • path: string
  • protocol: string
  • requestId: string
  • requestTime: string
  • requestTimeEpoch: number
  • OptionalresourceId?: null | string
  • resourcePath: string
  • OptionalrouteKey?: null | string
  • stage: string