API Reference
    Preparing search index...
    SnsNotificationSchema: ZodObject<
        {
            Message: ZodString;
            MessageAttributes: ZodOptional<
                ZodRecord<
                    ZodString,
                    ZodObject<{ Type: ZodString; Value: ZodString }, $strip>,
                >,
            >;
            MessageId: ZodString;
            Signature: ZodOptional<ZodString>;
            SignatureVersion: ZodOptional<ZodString>;
            SigningCertUrl: ZodOptional<ZodURL>;
            SigningCertURL: ZodOptional<ZodURL>;
            Subject: ZodOptional<ZodNullable<ZodString>>;
            Timestamp: ZodISODateTime;
            TopicArn: ZodString;
            Type: ZodLiteral<"Notification">;
            UnsubscribeUrl: ZodURL;
            UnsubscribeURL: ZodOptional<ZodURL>;
        },
        $strip,
    > = ...

    Zod schema for a SNS event notification record.