Variable S3ObjectLambdaEventSchemaConst
S3ObjectLambdaEventSchema: ZodObject<
{
configuration: ZodObject<
{
accessPointArn: ZodString;
payload: ZodUnion<
[ZodString, ZodObject<{}, "strip", ZodTypeAny, {}, {}>],
>;
supportingAccessPointArn: ZodString;
},
"strip",
ZodTypeAny,
{
accessPointArn: string;
payload: string
| {};
supportingAccessPointArn: string;
},
{
accessPointArn: string;
payload: string
| {};
supportingAccessPointArn: string;
},
>;
getObjectContext: ZodObject<
{
inputS3Url: ZodString;
outputRoute: ZodString;
outputToken: ZodString;
},
"strip",
ZodTypeAny,
{ inputS3Url: string; outputRoute: string; outputToken: string },
{ inputS3Url: string; outputRoute: string; outputToken: string },
>;
protocolVersion: ZodString;
userIdentity: ZodObject<
{
accessKeyId: ZodString;
accountId: ZodString;
arn: ZodString;
principalId: ZodString;
sessionContext: ZodOptional<
ZodObject<
{
attributes: ZodObject<
{
creationDate: ZodString;
mfaAuthenticated: ZodEffects<
ZodUnion<(...)>,
boolean,
(...) | (...) | (...) | (...),
>;
},
"strip",
ZodTypeAny,
{ creationDate: string; mfaAuthenticated: boolean },
{
creationDate: string;
mfaAuthenticated: boolean | "true" | "false";
},
>;
sessionIssuer: ZodObject<
{
accountId: ZodString;
arn: ZodString;
principalId: ZodString;
type: ZodString;
userName: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
},
{
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
},
>;
},
"strip",
ZodTypeAny,
{
attributes: { creationDate: string; mfaAuthenticated: boolean };
sessionIssuer: {
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
};
},
{
attributes: {
creationDate: string;
mfaAuthenticated: boolean
| "true"
| "false";
};
sessionIssuer: {
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
};
},
>,
>;
type: ZodString;
userName: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
accessKeyId: string;
accountId: string;
arn: string;
principalId: string;
sessionContext?: {
attributes: { creationDate: string; mfaAuthenticated: boolean };
sessionIssuer: {
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
};
};
type: string;
userName?: string;
},
{
accessKeyId: string;
accountId: string;
arn: string;
principalId: string;
sessionContext?: {
attributes: {
creationDate: string;
mfaAuthenticated: boolean
| "true"
| "false";
};
sessionIssuer: {
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
};
};
type: string;
userName?: string;
},
>;
userRequest: ZodObject<
{ headers: ZodRecord<ZodString, ZodString>; url: ZodString },
"strip",
ZodTypeAny,
{ headers: Record<string, string>; url: string },
{ headers: Record<string, string>; url: string },
>;
xAmzRequestId: ZodString;
},
"strip",
ZodTypeAny,
{
configuration: {
accessPointArn: string;
payload: string
| {};
supportingAccessPointArn: string;
};
getObjectContext: {
inputS3Url: string;
outputRoute: string;
outputToken: string;
};
protocolVersion: string;
userIdentity: {
accessKeyId: string;
accountId: string;
arn: string;
principalId: string;
sessionContext?: {
attributes: { creationDate: string; mfaAuthenticated: boolean };
sessionIssuer: {
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
};
};
type: string;
userName?: string;
};
userRequest: { headers: Record<string, string>; url: string };
xAmzRequestId: string;
},
{
configuration: {
accessPointArn: string;
payload: string
| {};
supportingAccessPointArn: string;
};
getObjectContext: {
inputS3Url: string;
outputRoute: string;
outputToken: string;
};
protocolVersion: string;
userIdentity: {
accessKeyId: string;
accountId: string;
arn: string;
principalId: string;
sessionContext?: {
attributes: {
creationDate: string;
mfaAuthenticated: boolean
| "true"
| "false";
};
sessionIssuer: {
accountId: string;
arn: string;
principalId: string;
type: string;
userName?: string;
};
};
type: string;
userName?: string;
};
userRequest: { headers: Record<string, string>; url: string };
xAmzRequestId: string;
},
> = ...
Zod schema for S3 IAM Access Point Lambda event notification.