Variable MigrateUserTriggerSchemaConst
MigrateUserTriggerSchema: ZodObject<
{
callerContext: ZodObject<
{ awsSdkVersion: ZodString; clientId: ZodString },
$strip,
>;
region: ZodString;
request: ZodObject<
{
clientMetadata: ZodOptional<ZodRecord<ZodString, ZodString>>;
password: ZodString;
validationData: ZodOptional<ZodRecord<ZodString, ZodString>>;
},
$strip,
>;
response: ZodObject<
{
desiredDeliveryMediums: ZodNullable<ZodArray<ZodString>>;
enableSMSMFA: ZodNullable<ZodBoolean>;
finalUserStatus: ZodNullable<ZodString>;
forceAliasCreation: ZodNullable<ZodBoolean>;
messageAction: ZodNullable<ZodString>;
userAttributes: ZodNullable<ZodRecord<ZodString, ZodString>>;
},
$strip,
>;
triggerSource: ZodString;
userName: ZodString;
userPoolId: ZodString;
version: ZodString;
},
$strip,
> = ...
A zod schema for a Cognito Migrate User trigger event.