Class: Aws::Glue::Types::Aggregate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Aggregate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aggs ⇒ Array<Types::AggregateOperation>
Specifies the aggregate functions to be performed on specified fields.
-
#groups ⇒ Array<Array<String>>
Specifies the fields to group by.
-
#inputs ⇒ Array<String>
Specifies the fields and rows to use as inputs for the aggregate transform.
-
#name ⇒ String
The name of the transform node.
Instance Attribute Details
#aggs ⇒ Array<Types::AggregateOperation>
Specifies the aggregate functions to be performed on specified fields.
110 111 112 113 114 115 116 117 |
# File 'lib/aws-sdk-glue/types.rb', line 110 class Aggregate < Struct.new( :name, :inputs, :groups, :aggs) SENSITIVE = [] include Aws::Structure end |
#groups ⇒ Array<Array<String>>
Specifies the fields to group by.
110 111 112 113 114 115 116 117 |
# File 'lib/aws-sdk-glue/types.rb', line 110 class Aggregate < Struct.new( :name, :inputs, :groups, :aggs) SENSITIVE = [] include Aws::Structure end |