UNPKG

448 BTypeScriptView Raw
1import { RemoveInput, RemoveOutput } from '../types';
2/**
3 * Remove a file from your S3 bucket.
4 * @param input - The RemoveInput object.
5 * @return Output containing the removed object key
6 * @throws service: {@link S3Exception} - S3 service errors thrown while getting properties
7 * @throws validation: {@link StorageValidationErrorCode } - Validation errors thrown
8 */
9export declare const remove: (input: RemoveInput) => Promise<RemoveOutput>;