Values.DescribeStreamInputSourceRepresents the input of a DescribeStream operation.
type nonrec t = {streamArn : StreamArn.t;The Amazon Resource Name (ARN) for the stream.
*)limit : PositiveIntegerObject.t option;The maximum number of shard objects to return. The upper limit is 100.
*)exclusiveStartShardId : ShardId.t option;The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId in the previous operation.
*)shardFilter : ShardFilter.t option;This optional field contains the filter definition for the DescribeStream API.
*)}val make :
?limit:??? ->
?exclusiveStartShardId:??? ->
?shardFilter:??? ->
streamArn:StreamArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of PositiveIntegerObject.t
| `String of StreamArn.t
| `Structure of
(string * [> `Enum of string | `String of ShardId.t ]) list ])
list ]