Module Values.UsageStatisticsSource

Contains the result of GuardDuty usage. If a UsageStatisticType is provided the result for other types will be null.

Sourcetype nonrec t = {
  1. sumByAccount : UsageAccountResultList.t option;
    (*

    The usage statistic sum organized by account ID.

    *)
  2. topAccountsByFeature : UsageTopAccountsResultList.t option;
    (*

    Lists the top 50 accounts by feature that have generated the most GuardDuty usage, in the order from most to least expensive. Currently, this doesn't support RDS_LOGIN_EVENTS.

    *)
  3. sumByDataSource : UsageDataSourceResultList.t option;
    (*

    The usage statistic sum organized by on data source.

    *)
  4. sumByResource : UsageResourceResultList.t option;
    (*

    The usage statistic sum organized by resource.

    *)
  5. topResources : UsageResourceResultList.t option;
    (*

    Lists the top 50 resources that have generated the most GuardDuty usage, in order from most to least expensive.

    *)
  6. sumByFeature : UsageFeatureResultList.t option;
    (*

    The usage statistic sum organized by feature.

    *)
}
Sourceval make : ?sumByAccount:??? -> ?topAccountsByFeature:??? -> ?sumByDataSource:??? -> ?sumByResource:??? -> ?topResources:??? -> ?sumByFeature:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AccountId.t | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `String of AccountId.t | `Structure of (string * [> `String of String_.t ]) list ]) list ] 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