ALBMultiValueHeadersEvent: {
    body: string;
    headers?: Record<string, string>;
    httpMethod: string;
    isBase64Encoded: boolean;
    multiValueHeaders: Record<string, string[]>;
    multiValueQueryStringParameters: Record<string, string[]>;
    path: string;
    queryStringParameters?: Record<string, string>;
    requestContext: { elb: { targetGroupArn: string } };
}

Zod schema for Application load balancer event with multi-value headers

Type declaration

  • body: string
  • Optionalheaders?: Record<string, string>
  • httpMethod: string
  • isBase64Encoded: boolean
  • multiValueHeaders: Record<string, string[]>
  • multiValueQueryStringParameters: Record<string, string[]>
  • path: string
  • OptionalqueryStringParameters?: Record<string, string>
  • requestContext: { elb: { targetGroupArn: string } }
{
"multiValueHeaders": {
"Set-cookie": [
"cookie-name=cookie-value;Domain=myweb.com;Secure;HttpOnly",
"cookie-name=cookie-value;Expires=May 8, 2019"
],
"Content-Type": [
"application/json"
]
}
}