UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

18 lines 464 B
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<string, any>; /** * @example "0 3 * * *" */ cronExpression?: string; } & Record<string, any>; //# sourceMappingURL=s-3-configuration.d.ts.map