Module Values.InputConfigurationSource

The transport parameters that are associated with an incoming media stream.

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

    The IP address that the flow listens on for incoming content for a media stream.

    *)
  2. inputPort : Integer.t option;
    (*

    The port that the flow listens on for an incoming media stream.

    *)
  3. interface : Interface.t option;
    (*

    The VPC interface where the media stream comes in from.

    *)
}
Sourceval make : ?inputIp:??? -> ?inputPort:??? -> ?interface:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `String of String_.t ]) 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