Adapter for AWS S3 and compatible services (Minio, LocalStack, etc.).
close(): Promise<void>
delete(key: string): Promise<void>
Deletes an object from S3. This operation is idempotent; it returns successfully even if the object does not exist.
get(key: string): Promise<StorageObject>
head(key: string): Promise<StorageMetadata>
private
isNotFound(error: unknown): boolean
list(prefix?: string): AsyncIterable<StorageEntry>
presign(key: string,options: PresignOptions,): Promise<string>
put(key: string,body: BodyInput,options?: PutOptions,): Promise<void>