Module Values.AccountUsageSource

The number of functions and amount of storage in use.

Sourcetype nonrec t = {
  1. totalCodeSize : Long.t option;
    (*

    The amount of storage space, in bytes, that's being used by deployment packages and layer archives.

    *)
  2. functionCount : Long.t option;
    (*

    The number of Lambda functions.

    *)
}
Sourceval make : ?totalCodeSize:??? -> ?functionCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t ]) 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