Module Values_0.MediaPlacementSource

A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.

Sourcetype nonrec t = {
  1. audioHostUrl : URI.t option;
    (*

    The audio host URL.

    *)
  2. audioFallbackUrl : URI.t option;
    (*

    The audio fallback URL.

    *)
  3. signalingUrl : URI.t option;
    (*

    The signaling URL.

    *)
  4. turnControlUrl : URI.t option;
    (*

    The turn control URL.

    *)
  5. eventIngestionUrl : URI.t option;
    (*

    The event ingestion URL to which you send client meeting events.

    *)
}
Sourceval make : ?audioHostUrl:??? -> ?audioFallbackUrl:??? -> ?signalingUrl:??? -> ?turnControlUrl:??? -> ?eventIngestionUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of URI.t ]) 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