Class: Aws::KeyspacesStreams::Types::KeyspacesRow
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::KeyspacesRow
- Defined in:
- gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb
Overview
Represents a row in an Amazon Keyspaces table, containing regular column values, static column values, and row-level metadata.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#row_metadata ⇒ Types::KeyspacesMetadata
Metadata that applies to the entire row, such as timestamps and TTL information.
-
#static_cells ⇒ Hash<String,Types::KeyspacesCell>
A map of static column cells shared by all rows with the same partition key, where keys are column names and values are the corresponding cells.
-
#value_cells ⇒ Hash<String,Types::KeyspacesCell>
A map of regular (non-static) column cells in the row, where keys are column names and values are the corresponding cells.
Instance Attribute Details
#row_metadata ⇒ Types::KeyspacesMetadata
Metadata that applies to the entire row, such as timestamps and TTL information.
548 549 550 551 552 553 554 |
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 548 class KeyspacesRow < Struct.new( :value_cells, :static_cells, :row_metadata) SENSITIVE = [] include Aws::Structure end |
#static_cells ⇒ Hash<String,Types::KeyspacesCell>
A map of static column cells shared by all rows with the same partition key, where keys are column names and values are the corresponding cells.
548 549 550 551 552 553 554 |
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 548 class KeyspacesRow < Struct.new( :value_cells, :static_cells, :row_metadata) SENSITIVE = [] include Aws::Structure end |
#value_cells ⇒ Hash<String,Types::KeyspacesCell>
A map of regular (non-static) column cells in the row, where keys are column names and values are the corresponding cells.
548 549 550 551 552 553 554 |
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 548 class KeyspacesRow < Struct.new( :value_cells, :static_cells, :row_metadata) SENSITIVE = [] include Aws::Structure end |