Module Values.DestinationConfigurationSource

The transport parameters that you want to associate with an outbound media stream.

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

    The IP address where you want MediaConnect to send contents of the media stream.

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

    The port that you want MediaConnect to use when it distributes the media stream to the output.

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

    The VPC interface that you want to use for the media stream associated with the output.

    *)
  4. outboundIp : String_.t option;
    (*

    The IP address that the receiver requires in order to establish a connection with the flow. This value is represented by the elastic network interface IP address of the VPC. This field applies only to outputs that use the CDI or ST 2110 JPEG XS or protocol.

    *)
}
Sourceval make : ?destinationIp:??? -> ?destinationPort:??? -> ?interface:??? -> ?outboundIp:??? -> 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