Module Values.DescribeStreamInputSource

Represents the input of a DescribeStream operation.

Sourcetype nonrec t = {
  1. streamArn : StreamArn.t;
    (*

    The Amazon Resource Name (ARN) for the stream.

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

    The maximum number of shard objects to return. The upper limit is 100.

    *)
  3. 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.

    *)
  4. shardFilter : ShardFilter.t option;
    (*

    This optional field contains the filter definition for the DescribeStream API.

    *)
}
Sourceval context_ : string
Sourceval make : ?limit:??? -> ?exclusiveStartShardId:??? -> ?shardFilter:??? -> streamArn:StreamArn.t -> unit -> t
Sourceval 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 ]
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