Variable APIGatewayRequestContextV2SchemaConst
APIGatewayRequestContextV2Schema: ZodObject<
{
accountId: ZodString;
apiId: ZodString;
authentication: ZodOptional<
ZodNullable<
ZodObject<
{
clientCert: ZodOptional<
ZodObject<
{
clientCertPem: ZodString;
issuerDN: ZodString;
serialNumber: ZodString;
subjectDN: ZodString;
validity: ZodObject<
{ notAfter: ...; notBefore: ... },
"strip",
ZodTypeAny,
{ notAfter: ...; notBefore: ... },
{ notAfter: ...; notBefore: ... },
>;
},
"strip",
ZodTypeAny,
{
clientCertPem: string;
issuerDN: string;
serialNumber: string;
subjectDN: string;
validity: { notAfter: string; notBefore: string };
},
{
clientCertPem: string;
issuerDN: string;
serialNumber: string;
subjectDN: string;
validity: { notAfter: string; notBefore: string };
},
>,
>;
},
"strip",
ZodTypeAny,
{
clientCert?: {
clientCertPem: string;
issuerDN: string;
serialNumber: string;
subjectDN: string;
validity: { notAfter: string; notBefore: string };
};
},
{
clientCert?: {
clientCertPem: string;
issuerDN: string;
serialNumber: string;
subjectDN: string;
validity: { notAfter: string; notBefore: string };
};
},
>,
>,
>;
authorizer: ZodOptional<
ZodObject<
{
iam: ZodOptional<
ZodObject<
{
accessKey: ZodOptional<ZodString>;
accountId: ZodOptional<ZodString>;
callerId: ZodOptional<ZodString>;
cognitoIdentity: ZodOptional<
ZodNullable<ZodObject<(...), (...), (...), (...), (...)>>,
>;
principalOrgId: ZodOptional<ZodNullable<ZodString>>;
userArn: ZodOptional<ZodString>;
userId: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
accessKey?: string;
accountId?: string;
callerId?: string;
cognitoIdentity?: | null
| { amr: (...)[]; identityId: string; identityPoolId: string };
principalOrgId?: null | string;
userArn?: string;
userId?: string;
},
{
accessKey?: string;
accountId?: string;
callerId?: string;
cognitoIdentity?: | null
| { amr: (...)[]; identityId: string; identityPoolId: string };
principalOrgId?: null | string;
userArn?: string;
userId?: string;
},
>,
>;
jwt: ZodOptional<
ZodObject<
{
claims: ZodRecord<ZodString, ZodAny>;
scopes: ZodNullable<ZodArray<ZodString, "many">>;
},
"strip",
ZodTypeAny,
{ claims: Record<string, any>; scopes: null | string[] },
{ claims: Record<string, any>; scopes: null | string[] },
>,
>;
lambda: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodAny>>>;
},
"strip",
ZodTypeAny,
{
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>;
},
{
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: 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: 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;
},
{
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;
},
> = ...
A zod schema for an API Gateway HTTP API Request Context