Class: Aws::FinSpaceData::Types::ColumnDefinition

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

Overview

The definition of a column in a tabular Dataset.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_descriptionString

Description for a column.

Returns:

  • (String)


275
276
277
278
279
280
281
# File 'lib/aws-sdk-finspacedata/types.rb', line 275

class ColumnDefinition < Struct.new(
  :data_type,
  :column_name,
  :column_description)
  SENSITIVE = []
  include Aws::Structure
end

#column_nameString

The name of a column.

Returns:

  • (String)


275
276
277
278
279
280
281
# File 'lib/aws-sdk-finspacedata/types.rb', line 275

class ColumnDefinition < Struct.new(
  :data_type,
  :column_name,
  :column_description)
  SENSITIVE = []
  include Aws::Structure
end

#data_typeString

Data type of a column.

  • ‘STRING` – A String data type.

    ‘CHAR` – A char data type.

    ‘INTEGER` – An integer data type.

    ‘TINYINT` – A tinyint data type.

    ‘SMALLINT` – A smallint data type.

    ‘BIGINT` – A bigint data type.

    ‘FLOAT` – A float data type.

    ‘DOUBLE` – A double data type.

    ‘DATE` – A date data type.

    ‘DATETIME` – A datetime data type.

    ‘BOOLEAN` – A boolean data type.

    ‘BINARY` – A binary data type.

Returns:

  • (String)


275
276
277
278
279
280
281
# File 'lib/aws-sdk-finspacedata/types.rb', line 275

class ColumnDefinition < Struct.new(
  :data_type,
  :column_name,
  :column_description)
  SENSITIVE = []
  include Aws::Structure
end