Variable PostAuthenticationTriggerSchemaConst
PostAuthenticationTriggerSchema: ZodObject<
{
callerContext: ZodObject<
{ awsSdkVersion: ZodString; clientId: ZodString },
$strip,
>;
region: ZodString;
request: ZodObject<
{
clientMetadata: ZodOptional<ZodRecord<ZodString, ZodString>>;
newDeviceUsed: ZodOptional<ZodBoolean>;
userAttributes: ZodRecord<ZodString, ZodString>;
},
$strip,
>;
response: ZodObject<{}, $strip>;
triggerSource: ZodLiteral<"PostAuthentication_Authentication">;
userName: ZodOptional<ZodString>;
userPoolId: ZodString;
version: ZodString;
},
$strip,
> = ...
A zod schema for a Cognito Post-Authentication trigger event.