Module Values.ConnectionBodyParameterSource

Additional parameter included in the body. You can include up to 100 additional body parameters per request. An event payload cannot exceed 64 KB.

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

    The key for the parameter.

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

    The value associated with the key.

    *)
  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 String_.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