Class: Aws::CleanRooms::Types::IntermediateTableColumn

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

Overview

Contains the name and type of a column in an intermediate table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the column.

Returns:

  • (String)


6589
6590
6591
6592
6593
6594
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6589

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

#typeString

The data type of the column.

Returns:

  • (String)


6589
6590
6591
6592
6593
6594
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6589

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