package aws-s3

  1. Overview
  2. Docs
type storage_class =
  1. | Standard
  2. | Standard_ia
  3. | Reduced_redundancy
  4. | Glacier
type content = {
  1. storage_class : storage_class;
  2. size : int;
  3. last_modified : Core.Time.t;
  4. key : string;
  5. etag : string;
}
and cont =
  1. | More of unit -> t
  2. | Done