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
| 151 152 153 154 155 156 | # File 'lib/aws-sdk-glue/types.rb', line 151 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.
| 151 152 153 154 155 156 | # File 'lib/aws-sdk-glue/types.rb', line 151 class AggregateOperation < Struct.new( :column, :agg_func) SENSITIVE = [] include Aws::Structure end |