Class: Aws::Glue::Types::SchemaColumn

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

Overview

Note:

When making an API call, you may pass SchemaColumn data as a hash:

{
  name: "ColumnNameString",
  data_type: "ColumnTypeString",
}

A key-value pair representing a column and data type that this transform can run against. The ‘Schema` parameter of the `MLTransform` may contain up to 100 of these structures.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_typeString

The type of data in the column.

Returns:

  • (String)


13186
13187
13188
13189
13190
13191
# File 'lib/aws-sdk-glue/types.rb', line 13186

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

#nameString

The name of the column.

Returns:

  • (String)


13186
13187
13188
13189
13190
13191
# File 'lib/aws-sdk-glue/types.rb', line 13186

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