Variable AlbMultiValueHeadersSchemaConst
AlbMultiValueHeadersSchema: ZodObject<
extendShape<
{
body: ZodString;
headers: ZodOptional<ZodRecord<ZodString, ZodString>>;
httpMethod: ZodString;
isBase64Encoded: ZodBoolean;
multiValueHeaders: ZodOptional<
ZodRecord<ZodString, ZodArray<ZodString, "many">>,
>;
multiValueQueryStringParameters: ZodOptional<
ZodRecord<ZodString, ZodArray<ZodString, "many">>,
>;
path: ZodString;
queryStringParameters: ZodOptional<ZodRecord<ZodString, ZodString>>;
requestContext: ZodObject<
{
elb: ZodObject<
{ targetGroupArn: ZodString },
"strip",
ZodTypeAny,
{ targetGroupArn: string },
{ targetGroupArn: string },
>;
},
"strip",
ZodTypeAny,
{ elb: { targetGroupArn: string } },
{ elb: { targetGroupArn: string } },
>;
},
{
multiValueHeaders: ZodRecord<ZodString, ZodArray<ZodString, "many">>;
multiValueQueryStringParameters: ZodRecord<
ZodString,
ZodArray<ZodString, "many">,
>;
},
>,
"strip",
ZodTypeAny,
{
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 } };
},
{
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 } };
},
> = ...
Deprecated
Use
AlbSchema
instead, which handles both types of headers & querystring parameters.This schema will be removed in a future major release.