API Reference
    Preparing search index...
    VpcLatticeSchema: ZodObject<
        {
            body: ZodString;
            headers: ZodRecord<ZodString, ZodString>;
            is_base64_encoded: ZodBoolean;
            method: ZodEnum<
                {
                    DELETE: "DELETE";
                    GET: "GET";
                    HEAD: "HEAD";
                    OPTIONS: "OPTIONS";
                    PATCH: "PATCH";
                    POST: "POST";
                    PUT: "PUT";
                },
            >;
            query_string_parameters: ZodRecord<ZodString, ZodString>;
            raw_path: ZodString;
        },
        $strip,
    > = ...

    Zod schema for VPC Lattice event

    {
    "raw_path": "/testpath",
    "method": "GET",
    "headers": {
    "user_agent": "curl/7.64.1",
    "x-forwarded-for": "10.213.229.10",
    "host": "test-lambda-service-3908sdf9u3u.dkfjd93.vpc-lattice-svcs.us-east-2.on.aws",
    "accept": "*/*",
    },
    "query_string_parameters": {
    "order-id": "1"
    },
    "body": "eyJ0ZXN0IjogImV2ZW50In0=",
    "is_base64_encoded": true
    }