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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-keyspaces/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 'gems/aws-sdk-keyspaces/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 in the Amazon Keyspaces Developer Guide.

Returns:

  • (String)


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

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