Class: Aws::Keyspaces::Types::PartitionKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::PartitionKey
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
The partition key portion of the primary key is required and determines how Amazon Keyspaces stores the data. The partition key can be a single column, or it can be a compound value composed of two or more columns.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name(s) of the partition key column(s).
Instance Attribute Details
#name ⇒ String
The name(s) of the partition key column(s).
1372 1373 1374 1375 1376 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1372 class PartitionKey < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |