Class: Aws::Glue::Types::AggregateOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::AggregateOperation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies the set of parameters needed to perform aggregation in the aggregate transform.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agg_func ⇒ String
Specifies the aggregation function to apply.
-
#column ⇒ Array<String>
Specifies the column on the data set on which the aggregation function will be applied.
Instance Attribute Details
#agg_func ⇒ String
Specifies the aggregation function to apply.
Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop
137 138 139 140 141 142 |
# File 'lib/aws-sdk-glue/types.rb', line 137 class AggregateOperation < Struct.new( :column, :agg_func) SENSITIVE = [] include Aws::Structure end |
#column ⇒ Array<String>
Specifies the column on the data set on which the aggregation function will be applied.
137 138 139 140 141 142 |
# File 'lib/aws-sdk-glue/types.rb', line 137 class AggregateOperation < Struct.new( :column, :agg_func) SENSITIVE = [] include Aws::Structure end |