Class: Aws::Keyspaces::Types::ClusteringKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ClusteringKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-keyspaces/types.rb
Overview
The optional clustering column portion of your primary key determines how the data is clustered and sorted within each partition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name(s) of the clustering column(s).
-
#order_by ⇒ String
Sets the ascendant (‘ASC`) or descendant (`DESC`) order modifier.
Instance Attribute Details
#name ⇒ String
The name(s) of the clustering column(s).
308 309 310 311 312 313 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 308 class ClusteringKey < Struct.new( :name, :order_by) SENSITIVE = [] include Aws::Structure end |
#order_by ⇒ String
Sets the ascendant (‘ASC`) or descendant (`DESC`) order modifier.
308 309 310 311 312 313 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 308 class ClusteringKey < Struct.new( :name, :order_by) SENSITIVE = [] include Aws::Structure end |