import type { IncludePathsArray } from './include-paths-array.js'; /** * Representation of the 'S3Configuration' schema. */ export type S3Configuration = { /** * @example "generic-secret-name" */ destination: string; s3?: { includePaths?: IncludePathsArray; } & Record; /** * @example "0 3 * * *" */ cronExpression?: string; } & Record; //# sourceMappingURL=s-3-configuration.d.ts.map