Module Values.GetStreamInputSource

Returns detailed information about a specific data capture stream for an Amazon Keyspaces table. The information includes the stream's Amazon Resource Name (ARN), creation time, current status, retention period, shard composition, and associated table details. This operation helps you monitor and manage the configuration of your Amazon Keyspaces data streams.

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

    The Amazon Resource Name (ARN) of the stream for which detailed information is requested. This uniquely identifies the specific stream you want to get information about.

    *)
  2. maxResults : GetStreamInputMaxResultsInteger.t option;
    (*

    The maximum number of shard objects to return in a single GetStream request. The default value is 100. The minimum value is 1 and the maximum value is 100.

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

    Optional filter criteria to apply when retrieving shards. You can filter shards based on their parent shardID to get a list of children shards to narrow down the results returned by the GetStream operation.

    *)
  4. nextToken : ShardIdToken.t option;
    (*

    An optional pagination token provided by a previous GetStream operation. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxResults.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?shardFilter:??? -> ?nextToken:??? -> streamArn:StreamArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GetStreamInputMaxResultsInteger.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