Module Values.AttackPropertySource

Details of a Shield event. This is provided as part of an AttackDetail.

Sourcetype nonrec t = {
  1. attackLayer : AttackLayer.t option;
    (*

    The type of Shield event that was observed. NETWORK indicates layer 3 and layer 4 events and APPLICATION indicates layer 7 events. For infrastructure layer events (L3 and L4 events), you can view metrics for top contributors in Amazon CloudWatch metrics. For more information, see Shield metrics and alarms in the WAF Developer Guide.

    *)
  2. attackPropertyIdentifier : AttackPropertyIdentifier.t option;
    (*

    Defines the Shield event property information that is provided. The WORDPRESS_PINGBACK_REFLECTOR and WORDPRESS_PINGBACK_SOURCE values are valid only for WordPress reflective pingback events.

    *)
  3. topContributors : TopContributors.t option;
    (*

    Contributor objects for the top five contributors to a Shield event. A contributor is a source of traffic that Shield Advanced identifies as responsible for some or all of an event.

    *)
  4. unit : Unit.t option;
    (*

    The unit used for the Contributor Value property.

    *)
  5. total : Long.t option;
    (*

    The total contributions made to this Shield event by all contributors.

    *)
}
Sourceval make : ?attackLayer:??? -> ?attackPropertyIdentifier:??? -> ?topContributors:??? -> ?unit:??? -> ?total:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Long of Long.t | `String of String_.t ]) list ] list | `Long of Long.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