UNPKG

@aws-sdk/client-s3

Version:

AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native

10 lines (9 loc) 449 B
import { S3Client } from "../S3Client"; import { HeadObjectCommandInput } from "../commands/HeadObjectCommand"; import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter"; /** * * @param params : Waiter configuration options. * @param input : the input to HeadObjectCommand for polling. */ export declare const waitForObjectExists: (params: WaiterConfiguration<S3Client>, input: HeadObjectCommandInput) => Promise<WaiterResult>;