Module Values.SrtCallerRouterOutputConfigurationSource

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

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

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

    *)
  2. destinationPort : SrtCallerRouterOutputConfigurationDestinationPortInteger.t;
    (*

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

    *)
  3. minimumLatencyMilliseconds : SrtCallerRouterOutputConfigurationMinimumLatencyMillisecondsLong.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. encryptionConfiguration : SrtEncryptionConfiguration.t option;
    (*

    Defines the encryption settings for an SRT caller output, including the encryption key configuration and associated parameters.

    *)
}
Sourceval context_ : string
Sourceval make : ?streamId:??? -> ?encryptionConfiguration:??? -> destinationAddress:String_.t -> destinationPort:SrtCallerRouterOutputConfigurationDestinationPortInteger.t -> minimumLatencyMilliseconds: SrtCallerRouterOutputConfigurationMinimumLatencyMillisecondsLong.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SrtCallerRouterOutputConfigurationDestinationPortInteger.t | `Long of SrtCallerRouterOutputConfigurationMinimumLatencyMillisecondsLong.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