async deleteObject(key: string) {
    if (!this.deleteObjectAsync) return {};
    return await this.deleteObjectAsync({ Bucket: this.bucketName, Key: key });
  }