API Reference
    Preparing search index...
    SnsSchema: ZodObject<
        {
            Records: ZodArray<
                ZodObject<
                    {
                        EventSource: ZodLiteral<"aws:sns">;
                        EventSubscriptionArn: ZodString;
                        EventVersion: ZodString;
                        Sns: ZodObject<
                            {
                                Message: ZodString;
                                MessageAttributes: ZodOptional<
                                    ZodRecord<
                                        ZodString,
                                        ZodObject<{ Type: ...; Value: ... }, $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,
                        >;
                    },
                    $strip,
                >,
            >;
        },
        $strip,
    > = ...

    Zod schema for SNS event

    {
    "Records": [
    {
    "EventVersion": "1.0",
    "EventSubscriptionArn": "arn:aws:sns:us-east-2:123456789012:sns-la ...",
    "EventSource": "aws:sns",
    "Sns": {
    "SignatureVersion": "1",
    "Timestamp": "2019-01-02T12:45:07.000Z",
    "Signature": "tcc6faL2yUC6dgZdmrwh1Y4cGa/ebXEkAi6RibDsvpi+tE/1+82j...65r==",
    "SigningCertUrl": "https://sns.us-east-2.amazonaws.com/SimpleNotification",
    "MessageId": "95df01b4-ee98-5cb9-9903-4c221d41eb5e",
    "Message": "Hello from SNS!",
    "MessageAttributes": {
    "Test": {
    "Type": "String",
    "Value": "TestString"
    },
    "TestBinary": {
    "Type": "Binary",
    "Value": "TestBinary"
    }
    },
    "Type": "Notification",
    "UnsubscribeUrl": "https://sns.us-east-2.amazonaws.com/?Action=Unsubscribe",
    "TopicArn": "arn:aws:sns:us-east-2:123456789012:sns-lambda",
    "Subject": "TestInvoke"
    }
    }
    ]
    }