Class: Aws::CleanRooms::Types::Column

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

Overview

A column within a schema relation, derived from the underlying Glue table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the column.

Returns:

  • (String)


1597
1598
1599
1600
1601
1602
# File 'lib/aws-sdk-cleanrooms/types.rb', line 1597

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

#typeString

The type of the column.

Returns:

  • (String)


1597
1598
1599
1600
1601
1602
# File 'lib/aws-sdk-cleanrooms/types.rb', line 1597

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