Module Values.HttpEndpointRequestConfigurationSource

The configuration of the HTTP endpoint request.

Sourcetype nonrec t = {
  1. contentEncoding : ContentEncoding.t option;
    (*

    Firehose uses the content encoding to compress the body of a request before sending the request to the destination. For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.

    *)
  2. commonAttributes : HttpEndpointCommonAttributesList.t option;
    (*

    Describes the metadata sent to the HTTP endpoint destination.

    *)
}
Sourceval make : ?contentEncoding:??? -> ?commonAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of HttpEndpointAttributeName.t ]) list ] 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