Class: Aws::Keyspaces::Types::PartitionKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::PartitionKey
- Includes:
- Structure
- Defined in:
- 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).
1131 1132 1133 1134 1135 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1131 class PartitionKey < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |