Module Values.ServiceLimitSource

Specifies a current quota for an Amazon Macie account.

Sourcetype nonrec t = {
  1. isServiceLimited : bool option;
    (*

    Specifies whether the account has met the quota that corresponds to the metric specified by the UsageByAccount.type field in the response.

    *)
  2. unit : Unit.t option;
    (*

    The unit of measurement for the value specified by the value field.

    *)
  3. value : Awso.Import.Int64.t option;
    (*

    The value for the metric specified by the UsageByAccount.type field in the response.

    *)
}
Sourceval make : ?isServiceLimited:??? -> ?unit:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `Long of Awso.Import.Int64.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