Module Values.DescribeStreamInputSource

Represents the input for DescribeStream.

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

    The name of the stream to describe.

    *)
  2. limit : DescribeStreamInputLimit.t option;
    (*

    The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.

    *)
  3. exclusiveStartShardId : ShardId.t option;
    (*

    The shard ID of the shard to start with. Specify this parameter to indicate that you want to describe the stream starting with the shard whose ID immediately follows ExclusiveStartShardId. If you don't specify this parameter, the default behavior for DescribeStream is to describe the stream starting with the first shard in the stream.

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

    The ARN of the stream.

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

    Not Implemented. Reserved for future use.

    *)
}
Sourceval make : ?streamName:??? -> ?limit:??? -> ?exclusiveStartShardId:??? -> ?streamARN:??? -> ?streamId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DescribeStreamInputLimit.t | `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