Module Values.AdditionalAttributeSource

Information about additional load balancer attributes.

Sourcetype nonrec t = {
  1. key : AdditionalAttributeKey.t option;
    (*

    The name of the attribute. The following attribute is supported. elb.http.desyncmitigationmode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive.

    *)
  2. value : AdditionalAttributeValue.t option;
    (*

    This value of the attribute.

    *)
}
Sourceval make : ?key:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AdditionalAttributeKey.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