Class: Aws::Appflow::Types::AggregationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::AggregationConfig
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass AggregationConfig data as a hash:
{
aggregation_type: "None", # accepts None, SingleFile
}
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.
Instance Attribute Details
#aggregation_type ⇒ String
Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated.
30 31 32 33 34 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 30 class AggregationConfig < Struct.new( :aggregation_type) SENSITIVE = [] include Aws::Structure end |