Module Values.AccountQuotaSource

Describes a quota for an Amazon Web Services account, for example the number of replication instances allowed.

Sourcetype nonrec t = {
  1. accountQuotaName : String_.t option;
    (*

    The name of the DMS quota for this Amazon Web Services account.

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

    The amount currently used toward the quota maximum.

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

    The maximum allowed value for the quota.

    *)
}
Sourceval make : ?accountQuotaName:??? -> ?used:??? -> ?max:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of String_.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