Class: Aws::Keyspaces::Types::ClusteringKey

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name(s) of the clustering column(s).

Returns:

  • (String)


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_byString

Sets the ascendant (‘ASC`) or descendant (`DESC`) order modifier.

Returns:

  • (String)


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