Module Values.DescribeStreamStorageConfigurationInputSource

Retrieves the current storage configuration for the specified Kinesis video stream. In the request, you must specify either the StreamName or the StreamARN. You must have permissions for the KinesisVideo:DescribeStreamStorageConfiguration action.

Sourcetype nonrec t = {
  1. streamName : StreamName.t option;
    (*

    The name of the stream for which you want to retrieve the storage configuration.

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

    The Amazon Resource Name (ARN) of the stream for which you want to retrieve the storage configuration.

    *)
}
Sourceval make : ?streamName:??? -> ?streamARN:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StreamName.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