Module Values.MediaSourceConfigSource

The configuration details that consist of the credentials required (MediaUriSecretArn and MediaUriType) to access the media files that are streamed to the camera.

Sourcetype nonrec t = {
  1. mediaUriSecretArn : MediaUriSecretArn.t;
    (*

    The Amazon Web Services Secrets Manager ARN for the username and password of the camera, or a local media file location.

    *)
  2. mediaUriType : MediaUriType.t;
    (*

    The Uniform Resource Identifier (URI) type. The FILE_URI value can be used to stream local media files. Preview only supports the RTSP_URI media source URI format .

    *)
}
Sourceval context_ : string
Sourceval make : mediaUriSecretArn:MediaUriSecretArn.t -> mediaUriType:MediaUriType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MediaUriSecretArn.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