Module Values.InputLocationSource

Input Location

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

    key used to extract the password from EC2 Parameter store

    *)
  2. uri : string;
    (*

    Uniform Resource Identifier - This should be a path to a file accessible to the Live system (eg. a http:// URI) depending on the output type. For example, a RTMP destination should have a uri simliar to: "rtmp://fmsserver/live".

    *)
  3. username : string option;
    (*

    Documentation update needed

    *)
}
Sourceval context_ : string
Sourceval make : ?passwordParam:??? -> ?username:??? -> uri:string -> 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