Smaws_Lib.Config
type t = {
resolveAuth : unit -> Auth.t;
resolveRegion : unit -> string;
}
val defaultConfig : unit -> t
Create a default configuration which derives the region and authorization from the environment
val make : resolveRegion:(unit -> string) -> resolveAuth:(unit -> Auth.t) -> t