Class: Aws::Appflow::Types::AggregationConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Appflow::Types::AggregationConfig
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The aggregation settings that you can use to customize the output format of your flow data.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #aggregation_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. 
- 
  
    
      #target_file_size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The desired file size, in MB, for each output file that Amazon AppFlow writes to the flow destination. 
Instance Attribute Details
#aggregation_type ⇒ String
Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated.
| 44 45 46 47 48 49 | # File 'lib/aws-sdk-appflow/types.rb', line 44 class AggregationConfig < Struct.new( :aggregation_type, :target_file_size) SENSITIVE = [] include Aws::Structure end | 
#target_file_size ⇒ Integer
The desired file size, in MB, for each output file that Amazon AppFlow writes to the flow destination. For each file, Amazon AppFlow attempts to achieve the size that you specify. The actual file sizes might differ from this target based on the number and size of the records that each file contains.
| 44 45 46 47 48 49 | # File 'lib/aws-sdk-appflow/types.rb', line 44 class AggregationConfig < Struct.new( :aggregation_type, :target_file_size) SENSITIVE = [] include Aws::Structure end |