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/List/index.html

Module Object.ListSource

Sourcetype options = {
  1. prefix : string option;
  2. delimiter : string option;
  3. max_keys : int option;
  4. start_after : string option;
  5. continuation_token : string option;
  6. expected_bucket_owner : string option;
}

ListObjectsV2 options and page data.

Sourcetype object_summary = {
  1. key : string;
  2. size : int64 option;
  3. etag : Etag.t option;
  4. last_modified : Ptime.t option;
  5. storage_class : Storage_class.t option;
  6. checksum : Checksum.summary;
}
Sourcetype page = {
  1. bucket : string option;
  2. prefix : string option;
  3. delimiter : string option;
  4. objects : object_summary list;
  5. common_prefixes : string list;
  6. key_count : int option;
  7. is_truncated : bool;
  8. continuation_token : string option;
  9. next_continuation_token : string option;
  10. response : Awskit.Response.t;
}
Sourceval default_options : options