Module Values.IngestEndpointSource

An endpoint for ingesting source content for a Channel.

Sourcetype nonrec t = {
  1. id : string option;
    (*

    The system generated unique identifier for the IngestEndpoint

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

    The system generated password for ingest authentication.

    *)
  3. url : string option;
    (*

    The ingest URL to which the source stream should be sent.

    *)
  4. username : SensitiveString.t option;
    (*

    The system generated username for ingest authentication.

    *)
}
Sourceval make : ?id:??? -> ?password:??? -> ?url:??? -> ?username:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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