Smaws_Lib.Configtype t = {resolveAuth : unit -> Auth.t;resolveRegion : unit -> string;endpoint : custom_endpoint option;}val defaultConfig : unit -> tCreate a default configuration which derives the region and authorization from the environment
val make : 
  ?endpoint:custom_endpoint ->
  resolveRegion:(unit -> string) ->
  resolveAuth:(unit -> Auth.t) ->
  unit ->
  t