// Copyright DWJ 2023. // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt import z from "zod"; export const BucketName = z .string() .min(3) .max(63) .regex(/[a-zA-Z0-9.-]+/);