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

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


1361
1362
1363
1364
1365
1366
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1361

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

#typeString

The type of the column.

Returns:

  • (String)


1361
1362
1363
1364
1365
1366
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1361

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