Module Values.AccountEntityAggregateSource

The number of entities in an account that are impacted by a specific event aggregated by the entity status codes.

Sourcetype nonrec t = {
  1. accountId : EventArn.t option;
    (*

    The 12-digit Amazon Web Services account numbers that contains the affected entities.

    *)
  2. count : Count.t option;
    (*

    The number of entities that match the filter criteria for the specified events.

    *)
  3. statuses : EntityStatuses.t option;
    (*

    The number of affected entities aggregated by the entity status codes.

    *)
}
Sourceval make : ?accountId:??? -> ?count:??? -> ?statuses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Count.t | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list | `String of EventArn.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