Class: Aws::KeyspacesStreams::Types::ShardFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#shard_idString

The identifier of a specific shard used to filter results based on the specified filter type.

Returns:

  • (String)


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

#typeString

The type of shard filter to use, which determines how the shardId parameter is interpreted.

Returns:

  • (String)


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