Class: Aws::CleanRooms::Types::AggregateColumn

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

Overview

Column in configured table that can be used in aggregate function in query.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_namesArray<String>

Column names in configured table of aggregate columns.

Returns:

  • (Array<String>)


45
46
47
48
49
50
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 45

class AggregateColumn < Struct.new(
  :column_names,
  :function)
  SENSITIVE = []
  include Aws::Structure
end

#functionString

Aggregation function that can be applied to aggregate column in query.

Returns:

  • (String)


45
46
47
48
49
50
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 45

class AggregateColumn < Struct.new(
  :column_names,
  :function)
  SENSITIVE = []
  include Aws::Structure
end