import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Awss3Credentials = { /** * AWS Access Key ID. */ key: string; /** * AWS Secret Access Key. */ secret: string; /** * Optional AWS Session Token (for temporary credentials). */ session?: string | undefined; }; /** @internal */ export declare const Awss3Credentials$inboundSchema: z.ZodType; /** @internal */ export type Awss3Credentials$Outbound = { key: string; secret: string; session?: string | undefined; }; /** @internal */ export declare const Awss3Credentials$outboundSchema: z.ZodType; export declare function awss3CredentialsToJSON(awss3Credentials: Awss3Credentials): string; export declare function awss3CredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=awss3credentials.d.ts.map