Module Values.StreamInfoSource

An object describing a Kinesis video stream.

Sourcetype nonrec t = {
  1. deviceName : DeviceName.t option;
    (*

    The name of the device that is associated with the stream.

    *)
  2. streamName : StreamName.t option;
    (*

    The name of the stream.

    *)
  3. streamARN : ResourceARN.t option;
    (*

    The Amazon Resource Name (ARN) of the stream.

    *)
  4. mediaType : MediaType.t option;
    (*

    The MediaType of the stream.

    *)
  5. kmsKeyId : KmsKeyId.t option;
    (*

    The ID of the Key Management Service (KMS) key that Kinesis Video Streams uses to encrypt data on the stream.

    *)
  6. version : Version.t option;
    (*

    The version of the stream.

    *)
  7. status : Status.t option;
    (*

    The status of the stream.

    *)
  8. creationTime : Timestamp.t option;
    (*

    A time stamp that indicates when the stream was created.

    *)
  9. dataRetentionInHours : DataRetentionInHours.t option;
    (*

    How long the stream retains data, in hours.

    *)
}
Sourceval make : ?deviceName:??? -> ?streamName:??? -> ?streamARN:??? -> ?mediaType:??? -> ?kmsKeyId:??? -> ?version:??? -> ?status:??? -> ?creationTime:??? -> ?dataRetentionInHours:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DataRetentionInHours.t | `String of DeviceName.t | `Timestamp of Timestamp.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