package awskit-s3

  1. Overview
  2. Docs
S3 client core — objects, buckets, multipart, and policies

Install

dune-project
 Dependency

Authors

Maintainers

Sources

awskit-v0.1.0.tbz
sha256=788e91d57b9eed047bdef011aec476e94588be20e2e2f1b8495cf48b1a90cf0f
sha512=0d441d599f3f3efb766270258bb4d8c9cd660943eb7f90ced0ec6f61a6790f5fb8977ca5cf87f466d84701ee34dbfdf81fe5043b568a2236411f577e698c6d1e

doc/awskit-s3/Awskit_s3/Object/Delete_many/index.html

Module Object.Delete_manySource

Sourcetype object_ = {
  1. key : string;
  2. version_id : Version_id.t option;
  3. etag : Etag.t option;
}

DeleteObjects request and result data.

Sourcetype deleted = {
  1. key : string;
  2. version_id : Version_id.t option;
  3. delete_marker : bool option;
}
Sourcetype item_error = {
  1. key : string;
  2. code : string;
  3. message : string option;
}
Sourcetype result = {
  1. deleted : deleted list;
  2. errors : item_error list;
  3. response : Awskit.Response.t;
}
Sourcetype options = {
  1. expected_bucket_owner : string option;
}
Sourceval default_options : options