Variable LambdaFunctionUrlSchemaConst
LambdaFunctionUrlSchema: ZodObject<
extendShape<
{
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<(...), (...), (...), (...), (...)>,
>;
},
"strip",
ZodTypeAny,
{
clientCert?: {
clientCertPem: ...;
issuerDN: ...;
serialNumber: ...;
subjectDN: ...;
validity: ...;
};
},
{
clientCert?: {
clientCertPem: ...;
issuerDN: ...;
serialNumber: ...;
subjectDN: ...;
validity: ...;
};
},
>,
>,
>;
authorizer: ZodOptional<
ZodObject<
{
iam: ZodOptional<
ZodObject<
{
accessKey: ...;
accountId: ...;
callerId: ...;
cognitoIdentity: ...;
principalOrgId: ...;
userArn: ...;
userId: ...;
},
"strip",
ZodTypeAny,
{
accessKey?: ...;
accountId?: ...;
callerId?: ...;
cognitoIdentity?: ...;
principalOrgId?: ...;
userArn?: ...;
userId?: ...;
},
{
accessKey?: ...;
accountId?: ...;
callerId?: ...;
cognitoIdentity?: ...;
principalOrgId?: ...;
userArn?: ...;
userId?: ...;
},
>,
>;
jwt: ZodOptional<
ZodObject<
{ claims: ...; scopes: ... },
"strip",
ZodTypeAny,
{ claims: ...; scopes: ... },
{ claims: ...; scopes: ... },
>,
>;
lambda: ZodOptional<ZodNullable<ZodRecord<(...), (...)>>>;
},
"strip",
ZodTypeAny,
{
iam?: {
accessKey?: (...)
| (...);
accountId?: (...) | (...);
callerId?: (...) | (...);
cognitoIdentity?: (...) | (...) | (...);
principalOrgId?: (...) | (...) | (...);
userArn?: (...) | (...);
userId?: (...) | (...);
};
jwt?: { claims: Record<(...), (...)>; scopes: (...) | (...) };
lambda?: null | Record<string, any>;
},
{
iam?: {
accessKey?: (...)
| (...);
accountId?: (...) | (...);
callerId?: (...) | (...);
cognitoIdentity?: (...) | (...) | (...);
principalOrgId?: (...) | (...) | (...);
userArn?: (...) | (...);
userId?: (...) | (...);
};
jwt?: { claims: Record<(...), (...)>; scopes: (...) | (...) };
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: ...; identityPoolId: ... };
principalOrgId?: null | string;
userArn?: string;
userId?: string;
};
jwt?: { claims: Record<string, any>; scopes: null | (...)[] };
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: ...; identityPoolId: ... };
principalOrgId?: null | string;
userArn?: string;
userId?: string;
};
jwt?: { claims: Record<string, any>; scopes: null | (...)[] };
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;
},
> = ...
Zod schema for Lambda Function URL follows the API Gateway HTTP APIs Payload Format Version 2.0.
Keys related to API Gateway features not available in Function URL use a sentinel value (e.g.
routeKey
,stage
).