/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const S3EncryptionType = { Aes256: "AES256", AwsKms: "aws:kms", AwsKmsDsse: "aws:kms:dsse", } as const; export type S3EncryptionType = OpenEnum; /** @internal */ export const S3EncryptionType$inboundSchema: z.ZodMiniType< S3EncryptionType, unknown > = openEnums.inboundSchema(S3EncryptionType); /** @internal */ export const S3EncryptionType$outboundSchema: z.ZodMiniType< string, S3EncryptionType > = openEnums.outboundSchema(S3EncryptionType);