Class: Aws::Glue::Types::AggregateOperation

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#agg_funcString

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

Returns:

  • (String)


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

#columnArray<String>

Specifies the column on the data set on which the aggregation function will be applied.

Returns:

  • (Array<String>)


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