Module Values.HttpEndpointConfigurationSource

Describes the configuration of the HTTP endpoint to which Kinesis Firehose delivers data.

Sourcetype nonrec t = {
  1. url : HttpEndpointUrl.t;
    (*

    The URL of the HTTP endpoint selected as the destination. If you choose an HTTP endpoint as your destination, review and follow the instructions in the Appendix - HTTP Endpoint Delivery Request and Response Specifications.

    *)
  2. name : HttpEndpointName.t option;
    (*

    The name of the HTTP endpoint selected as the destination.

    *)
  3. accessKey : HttpEndpointAccessKey.t option;
    (*

    The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?accessKey:??? -> url:HttpEndpointUrl.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HttpEndpointUrl.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