Class: Aws::KeyspacesStreams::Types::KeyspacesCell
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::KeyspacesCell
- 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
-
#metadata ⇒ Types::KeyspacesMetadata
Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.
-
#value ⇒ Types::KeyspacesCellValue
The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.
Instance Attribute Details
#metadata ⇒ Types::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 |
#value ⇒ Types::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 |