Module Values.ConnectionQueryStringParameterSource

Any additional query string parameter for the connection. You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB.

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

    The key for a query string parameter.

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

    The value associated with the key for the query string parameter.

    *)
  3. isValueSecret : Boolean.t option;
    (*

    Specifies whether the value is secret.

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