Class: Aws::IoTAnalytics::Types::Column

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

Overview

Contains information about a column that stores your data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the column.

Returns:

  • (String)


344
345
346
347
348
349
# File 'lib/aws-sdk-iotanalytics/types.rb', line 344

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

#typeString

The type of data. For more information about the supported data types, see [Common data types] in the *Glue Developer Guide*.

[1]: docs.aws.amazon.com/glue/latest/dg/aws-glue-api-common.html

Returns:

  • (String)


344
345
346
347
348
349
# File 'lib/aws-sdk-iotanalytics/types.rb', line 344

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