API Reference
    Preparing search index...
    SqsMsgAttributeSchema: ZodObject<
        {
            binaryListValues: ZodOptional<ZodArray<ZodString, "many">>;
            binaryValue: ZodOptional<ZodString>;
            dataType: ZodUnion<
                [
                    ZodLiteral<"String">,
                    ZodLiteral<"Number">,
                    ZodLiteral<"Binary">,
                    ZodString,
                ],
            >;
            stringListValues: ZodOptional<ZodArray<ZodString, "many">>;
            stringValue: ZodOptional<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            binaryListValues?: string[];
            binaryValue?: string;
            dataType: string;
            stringListValues?: string[];
            stringValue?: string;
        },
        {
            binaryListValues?: string[];
            binaryValue?: string;
            dataType: string;
            stringListValues?: string[];
            stringValue?: string;
        },
    > = ...