Module Values.StreamSummarySource

Summary information about a stream.

Sourcetype nonrec t = {
  1. clusterIdentifier : ClusterId.t option;
    (*

    The ID of the cluster.

    *)
  2. streamIdentifier : StreamId.t option;
    (*

    The ID of the stream.

    *)
  3. arn : StreamArn.t option;
    (*

    The ARN of the stream.

    *)
  4. creationTime : StreamCreationTime.t option;
    (*

    The timestamp when the stream was created.

    *)
  5. status : StreamStatus.t option;
    (*

    The current status of the stream.

    *)
}
Sourceval make : ?clusterIdentifier:??? -> ?streamIdentifier:??? -> ?arn:??? -> ?creationTime:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ClusterId.t | `Timestamp of StreamCreationTime.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