Module Values.ApplicationAttributeSource

Application details defined during the web ACL creation process. Application attributes help WAF give recommendations for protection packs.

Sourcetype nonrec t = {
  1. name : AttributeName.t option;
    (*

    Specifies the attribute name.

    *)
  2. values : AttributeValues.t option;
    (*

    Specifies the attribute value.

    *)
}
Sourceval make : ?name:??? -> ?values:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AttributeValue.t ] list | `String of AttributeName.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