Class: Aws::Keyspaces::Types::ColumnDefinition

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-keyspaces/types.rb

Overview

The names and data types of regular columns.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the column.

Returns:

  • (String)


332
333
334
335
336
337
# File 'lib/aws-sdk-keyspaces/types.rb', line 332

class ColumnDefinition < Struct.new(
  :name,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The data type of the column. For a list of available data types, see

Data types][1

in the *Amazon Keyspaces Developer Guide*.

[1]: docs.aws.amazon.com/keyspaces/latest/devguide/cql.elements.html#cql.data-types

Returns:

  • (String)


332
333
334
335
336
337
# File 'lib/aws-sdk-keyspaces/types.rb', line 332

class ColumnDefinition < Struct.new(
  :name,
  :type)
  SENSITIVE = []
  include Aws::Structure
end