API Reference
    Preparing search index...

    Variable PreAuthenticationTriggerSchemaConst

    PreAuthenticationTriggerSchema: ZodObject<
        extendShape<
            {
                callerContext: ZodObject<
                    { awsSdkVersion: ZodString; clientId: ZodString },
                    "strip",
                    ZodTypeAny,
                    { awsSdkVersion: string; clientId: string },
                    { awsSdkVersion: string; clientId: string },
                >;
                region: ZodString;
                request: ZodObject<{}, "strip", ZodTypeAny, {}, {}>;
                response: ZodObject<{}, "strip", ZodTypeAny, {}, {}>;
                triggerSource: ZodString;
                userName: ZodOptional<ZodString>;
                userPoolId: ZodString;
                version: ZodString;
            },
            {
                request: ZodObject<
                    {
                        userAttributes: ZodRecord<ZodString, ZodString>;
                        userNotFound: ZodOptional<ZodBoolean>;
                        validationData: ZodOptional<ZodRecord<ZodString, ZodString>>;
                    },
                    "strip",
                    ZodTypeAny,
                    {
                        userAttributes: Record<string, string>;
                        userNotFound?: boolean;
                        validationData?: Record<string, string>;
                    },
                    {
                        userAttributes: Record<string, string>;
                        userNotFound?: boolean;
                        validationData?: Record<string, string>;
                    },
                >;
                response: ZodObject<{}, "strip", ZodTypeAny, {}, {}>;
                triggerSource: ZodLiteral<"PreAuthentication_Authentication">;
            },
        >,
        "strip",
        ZodTypeAny,
        {
            callerContext: { awsSdkVersion: string; clientId: string };
            region: string;
            request: {
                userAttributes: Record<string, string>;
                userNotFound?: boolean;
                validationData?: Record<string, string>;
            };
            response: {};
            triggerSource: "PreAuthentication_Authentication";
            userName?: string;
            userPoolId: string;
            version: string;
        },
        {
            callerContext: { awsSdkVersion: string; clientId: string };
            region: string;
            request: {
                userAttributes: Record<string, string>;
                userNotFound?: boolean;
                validationData?: Record<string, string>;
            };
            response: {};
            triggerSource: "PreAuthentication_Authentication";
            userName?: string;
            userPoolId: string;
            version: string;
        },
    > = ...

    A zod schema for a Cognito Pre-Authentication trigger event.

    {
    "version": "1",
    "triggerSource": "PreAuthentication_Authentication",
    "region": "us-east-1",
    "userPoolId": "us-east-1_ABC123",
    "request": {
    "userAttributes": {
    "email": "user@example.com",
    "name": "John Doe"
    },
    "validationData": {
    "someKey": "someValue"
    },
    "userNotFound": false
    },
    "response": {}
    }