Class: Aws::CleanRooms::Types::AggregateColumn
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::AggregateColumn
- 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
-
#column_names ⇒ Array<String>
Column names in configured table of aggregate columns.
-
#function ⇒ String
Aggregation function that can be applied to aggregate column in query.
Instance Attribute Details
#column_names ⇒ Array<String>
Column names in configured table of aggregate columns.
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 |
#function ⇒ String
Aggregation function that can be applied to aggregate column in query.
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 |