Module Values.DomainStatsSource

Usage-specific statistics about the domain.

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

    The total number of profiles currently in the domain.

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

    The number of profiles that you are currently paying for in the domain. If you have more than 100 objects associated with a single profile, that profile counts as two profiles. If you have more than 200 objects, that profile counts as three, and so on.

    *)
  3. objectCount : Long.t option;
    (*

    The total number of objects in domain.

    *)
  4. totalSize : Long.t option;
    (*

    The total size, in bytes, of all objects in the domain.

    *)
}
Sourceval make : ?profileCount:??? -> ?meteringProfileCount:??? -> ?objectCount:??? -> ?totalSize:??? -> 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