Module Values.GetAccountSettingsResponseSource

Retrieves details about your account's limits and usage in an Amazon Web Services Region.

Sourcetype nonrec t = {
  1. accountLimit : AccountLimit.t option;
    (*

    Limits that are related to concurrency and code storage.

    *)
  2. accountUsage : AccountUsage.t option;
    (*

    The number of functions and amount of storage in use.

    *)
}
Sourcetype nonrec error = [
  1. | `ServiceException of ServiceException.t
  2. | `TooManyRequestsException of TooManyRequestsException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?accountLimit:??? -> ?accountUsage:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t