package aws-s3

  1. Overview
  2. Docs
type t = {
  1. access_key : string;
  2. secret_key : string;
  3. token : string option;
  4. expiration : float option;
}

Loading credentials locally or from IAM service.

val make : access_key:string -> secret_key:string -> ?token:string -> ?expiration:float -> unit -> t

Make credentials

module Make (Io : Types.Io) : sig ... end