Module Values.FieldToProtectSource

Specifies a field type and keys to protect in stored web request data. This is part of the data protection configuration for a web ACL.

Sourcetype nonrec t = {
  1. fieldType : FieldToProtectType.t;
    (*

    Specifies the web request component type to protect.

    *)
  2. fieldKeys : FieldToProtectKeys.t option;
    (*

    Specifies the keys to protect for the specified field type. If you don't specify any key, then all keys for the field type are protected.

    *)
}
Sourceval context_ : string
Sourceval make : ?fieldKeys:??? -> fieldType:FieldToProtectType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of FieldToProtectKeyName.t ] 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