Class: Aws::KeyspacesStreams::Types::ShardFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::ShardFilter
- Defined in:
- gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb
Overview
A filter used to limit the shards returned by a GetStream
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#shard_id ⇒ String
The identifier of a specific shard used to filter results based on the specified filter type.
-
#type ⇒ String
The type of shard filter to use, which determines how the shardId parameter is interpreted.
Instance Attribute Details
#shard_id ⇒ String
The identifier of a specific shard used to filter results based on the specified filter type.
744 745 746 747 748 749 |
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 744 class ShardFilter < Struct.new( :type, :shard_id) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of shard filter to use, which determines how the shardId parameter is interpreted.
744 745 746 747 748 749 |
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 744 class ShardFilter < Struct.new( :type, :shard_id) SENSITIVE = [] include Aws::Structure end |