Class: Aws::KeyspacesStreams::Types::KeyspacesCell

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb

Overview

Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metadataTypes::KeyspacesMetadata

Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.



292
293
294
295
296
297
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 292

class KeyspacesCell < Struct.new(
  :value,
  :metadata)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::KeyspacesCellValue

The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.



292
293
294
295
296
297
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 292

class KeyspacesCell < Struct.new(
  :value,
  :metadata)
  SENSITIVE = []
  include Aws::Structure
end