Module Values.AttackSummarySource

Summarizes all DDoS attacks for a specified time period.

Sourcetype nonrec t = {
  1. attackId : String_.t option;
    (*

    The unique identifier (ID) of the attack.

    *)
  2. resourceArn : String_.t option;
    (*

    The ARN (Amazon Resource Name) of the resource that was attacked.

    *)
  3. startTime : AttackTimestamp.t option;
    (*

    The start time of the attack, in Unix time in seconds.

    *)
  4. endTime : AttackTimestamp.t option;
    (*

    The end time of the attack, in Unix time in seconds.

    *)
  5. attackVectors : AttackVectorDescriptionList.t option;
    (*

    The list of attacks for a specified time period.

    *)
}
Sourceval make : ?attackId:??? -> ?resourceArn:??? -> ?startTime:??? -> ?endTime:??? -> ?attackVectors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of AttackTimestamp.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