Module Values_0.StreamSummarySource

A summary of a stream.

Sourcetype nonrec t = {
  1. streamId : StreamId.t option;
    (*

    The stream ID.

    *)
  2. streamArn : StreamArn.t option;
    (*

    The stream ARN.

    *)
  3. streamVersion : StreamVersion.t option;
    (*

    The stream version.

    *)
  4. description : StreamDescription.t option;
    (*

    A description of the stream.

    *)
}
Sourceval make : ?streamId:??? -> ?streamArn:??? -> ?streamVersion:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of StreamVersion.t | `String of StreamId.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