Module Values.UsageByAccountSource

Provides data for a specific usage metric and the corresponding quota for an Amazon Macie account.

Sourcetype nonrec t = {
  1. currency : Currency.t option;
    (*

    The type of currency that the value for the metric (estimatedCost) is reported in.

    *)
  2. estimatedCost : string option;
    (*

    The estimated value for the metric.

    *)
  3. serviceLimit : ServiceLimit.t option;
    (*

    The current value for the quota that corresponds to the metric specified by the type field.

    *)
  4. type_ : UsageType.t option;
    (*

    The name of the metric. Possible values are: AUTOMATED_OBJECT_MONITORING, to monitor S3 objects for automated sensitive data discovery; AUTOMATED_SENSITIVE_DATA_DISCOVERY, to analyze S3 objects for automated sensitive data discovery; DATA_INVENTORY_EVALUATION, to monitor S3 buckets; and, SENSITIVE_DATA_DISCOVERY, to run classification jobs.

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