Variable CustomEmailSenderTriggerSchemaConst
CustomEmailSenderTriggerSchema: ZodObject<
{
callerContext: ZodObject<
{ awsSdkVersion: ZodString; clientId: ZodString },
$strip,
>;
region: ZodString;
request: ZodObject<
{
clientMetadata: ZodOptional<ZodRecord<ZodString, ZodString>>;
code: ZodString;
type: ZodLiteral<"customEmailSenderRequestV1">;
userAttributes: ZodRecord<ZodString, ZodString>;
},
$strip,
>;
response: ZodObject<{}, $strip>;
triggerSource: ZodLiteral<"CustomEmailSender_SignUp">;
userName: ZodOptional<ZodString>;
userPoolId: ZodString;
version: ZodString;
},
$strip,
> = ...
A zod schema for a Cognito Custom Email Sender trigger event.