Module Values.UsageCriteriaSource

Contains information about the criteria used to query usage statistics.

Sourcetype nonrec t = {
  1. accountIds : AccountIds.t option;
    (*

    The account IDs to aggregate usage statistics from.

    *)
  2. dataSources : DataSourceList.t option;
    (*

    The data sources to aggregate usage statistics from.

    *)
  3. resources : ResourceList.t option;
    (*

    The resources to aggregate usage statistics from. Only accepts exact resource names.

    *)
  4. features : UsageFeatureList.t option;
    (*

    The features to aggregate usage statistics from.

    *)
}
Sourceval make : ?accountIds:??? -> ?dataSources:??? -> ?resources:??? -> ?features:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of AccountId.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