Module Values.AttackStatisticsDataItemSource

A single attack statistics data record. This is returned by DescribeAttackStatistics along with a time range indicating the time period that the attack statistics apply to.

Sourcetype nonrec t = {
  1. attackVolume : AttackVolume.t option;
    (*

    Information about the volume of attacks during the time period. If the accompanying AttackCount is zero, this setting might be empty.

    *)
  2. attackCount : Long.t option;
    (*

    The number of attacks detected during the time period. This is always present, but might be zero.

    *)
}
Sourceval make : ?attackVolume:??? -> ?attackCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `Structure of (string * [> `Double of Double.t ]) 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