Module Values.GetUsageStatisticsRequestSource

Retrieves (queries) quotas and aggregated usage data for one or more accounts.

Sourcetype nonrec t = {
  1. filterBy : UsageStatisticsFilter.t list option;
    (*

    An array of objects, one for each condition to use to filter the query results. If you specify more than one condition, Amazon Macie uses an AND operator to join the conditions.

    *)
  2. maxResults : int option;
    (*

    The maximum number of items to include in each page of the response.

    *)
  3. nextToken : string option;
    (*

    The nextToken string that specifies which page of results to return in a paginated response.

    *)
  4. sortBy : UsageStatisticsSortBy.t option;
    (*

    The criteria to use to sort the query results.

    *)
  5. timeRange : TimeRange.t option;
    (*

    The inclusive time period to query usage data for. Valid values are: MONTH_TO_DATE, for the current calendar month to date; and, PAST_30_DAYS, for the preceding 30 days. If you don't specify a value, Amazon Macie provides usage data for the preceding 30 days.

    *)
}
Sourceval make : ?filterBy:??? -> ?maxResults:??? -> ?nextToken:??? -> ?sortBy:??? -> ?timeRange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list ]) list ] list | `String of string | `Structure of (string * [> `Enum of string ]) 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