Module Values_0.KinesisVideoStreamConfigSource

Configuration information of a Kinesis video stream.

Sourcetype nonrec t = {
  1. prefix : Prefix.t;
    (*

    The prefix of the video stream.

    *)
  2. retentionPeriodHours : Hours.t;
    (*

    The number of hours data is retained in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is 0, indicating that the stream does not persist data.

    *)
  3. encryptionConfig : EncryptionConfig.t;
    (*

    The encryption configuration.

    *)
}
Sourceval context_ : string
Sourceval make : prefix:Prefix.t -> retentionPeriodHours:Hours.t -> encryptionConfig:EncryptionConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Hours.t | `String of Prefix.t | `Structure of (string * [> `Enum of string | `String of KeyId.t ]) 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