UNPKG

@aws-amplify/storage

Version:

Storage category of aws-amplify

9 lines (8 loc) 364 B
import { UploadDataInput } from '../../types'; import { Item as S3Item } from '../../types/outputs'; /** * Get a function the returns a promise to call putObject API to S3. * * @internal */ export declare const putObjectJob: ({ options: uploadDataOptions, key, data }: UploadDataInput, abortSignal: AbortSignal, totalLength?: number) => () => Promise<S3Item>;