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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotanalytics/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 'gems/aws-sdk-iotanalytics/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.

Returns:

  • (String)


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

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