Module Values.DescribeStreamSummaryInputSource

Provides a summarized description of the specified Kinesis data stream without the shard list. When invoking this API, you must use either the StreamARN or the StreamName parameter, or both. It is recommended that you use the StreamARN input parameter when you invoke this API. The information returned includes the stream name, Amazon Resource Name (ARN), status, record retention period, approximate creation time, monitoring, encryption details, and open shard count. DescribeStreamSummary has a limit of 20 transactions per second per account.

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

    The name of the stream to describe.

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

    The ARN of the stream.

    *)
  3. streamId : StreamId.t option;
    (*

    Not Implemented. Reserved for future use.

    *)
}
Sourceval make : ?streamName:??? -> ?streamARN:??? -> ?streamId:??? -> 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