Module Values.SrtCallerRouterInputConfigurationSource

The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in caller mode, including the source address and port, minimum latency, stream ID, and decryption key configuration.

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

    The source IP address for the SRT protocol in caller mode.

    *)
  2. sourcePort : SrtCallerRouterInputConfigurationSourcePortInteger.t;
    (*

    The source port number for the SRT protocol in caller mode.

    *)
  3. minimumLatencyMilliseconds : SrtCallerRouterInputConfigurationMinimumLatencyMillisecondsLong.t;
    (*

    The minimum latency in milliseconds for the SRT protocol in caller mode.

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

    The stream ID for the SRT protocol in caller mode.

    *)
  5. decryptionConfiguration : SrtDecryptionConfiguration.t option;
    (*

    Specifies the decryption settings for an SRT caller input, including the encryption key configuration and associated parameters.

    *)
}
Sourceval context_ : string
Sourceval make : ?streamId:??? -> ?decryptionConfiguration:??? -> sourceAddress:String_.t -> sourcePort:SrtCallerRouterInputConfigurationSourcePortInteger.t -> minimumLatencyMilliseconds: SrtCallerRouterInputConfigurationMinimumLatencyMillisecondsLong.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SrtCallerRouterInputConfigurationSourcePortInteger.t | `Long of SrtCallerRouterInputConfigurationMinimumLatencyMillisecondsLong.t | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `String of SecretArn.t ]) list ]) 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