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)


6814
6815
6816
6817
6818
6819
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6814

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

#typeString

The data type of the column.

Returns:

  • (String)


6814
6815
6816
6817
6818
6819
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6814

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