interface AggregationConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppFlow.CfnFlow.AggregationConfigProperty | 
  Java | software.amazon.awscdk.services.appflow.CfnFlow.AggregationConfigProperty | 
  Python | aws_cdk.aws_appflow.CfnFlow.AggregationConfigProperty | 
  TypeScript  | @aws-cdk/aws-appflow » CfnFlow » AggregationConfigProperty | 
The aggregation settings that you can use to customize the output format of your flow data.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appflow from '@aws-cdk/aws-appflow';
const aggregationConfigProperty: appflow.CfnFlow.AggregationConfigProperty = {
  aggregationType: 'aggregationType',
  targetFileSize: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| aggregation | string | Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated. | 
| target | number | CfnFlow.AggregationConfigProperty.TargetFileSize. | 
aggregationType?
Type:
string
(optional)
Specifies whether Amazon AppFlow aggregates the flow records into a single file, or leave them unaggregated.
targetFileSize?
Type:
number
(optional)
CfnFlow.AggregationConfigProperty.TargetFileSize.

 .NET
 Java
 Python
 TypeScript