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.
| 124 125 126 127 128 129 130 131 | # File 'lib/aws-sdk-glue/types.rb', line 124 class Aggregate < Struct.new( :name, :inputs, :groups, :aggs) SENSITIVE = [] include Aws::Structure end | 
#groups ⇒ Array<Array<String>>
Specifies the fields to group by.
| 124 125 126 127 128 129 130 131 | # File 'lib/aws-sdk-glue/types.rb', line 124 class Aggregate < Struct.new( :name, :inputs, :groups, :aggs) SENSITIVE = [] include Aws::Structure end |