interface S3OutputFormatConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnFlow.S3OutputFormatConfigProperty |
Java | software.amazon.awscdk.services.appflow.CfnFlow.S3OutputFormatConfigProperty |
Python | aws_cdk.aws_appflow.CfnFlow.S3OutputFormatConfigProperty |
TypeScript | @aws-cdk/aws-appflow » CfnFlow » S3OutputFormatConfigProperty |
The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.
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 s3OutputFormatConfigProperty: appflow.CfnFlow.S3OutputFormatConfigProperty = {
aggregationConfig: {
aggregationType: 'aggregationType',
targetFileSize: 123,
},
fileType: 'fileType',
prefixConfig: {
pathPrefixHierarchy: ['pathPrefixHierarchy'],
prefixFormat: 'prefixFormat',
prefixType: 'prefixType',
},
preserveSourceDataTyping: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| aggregation | IResolvable | Aggregation | The aggregation settings that you can use to customize the output format of your flow data. |
| file | string | Indicates the file type that Amazon AppFlow places in the Amazon S3 bucket. |
| prefix | IResolvable | Prefix | Determines the prefix that Amazon AppFlow applies to the folder name in the Amazon S3 bucket. |
| preserve | boolean | IResolvable | CfnFlow.S3OutputFormatConfigProperty.PreserveSourceDataTyping. |
aggregationConfig?
Type:
IResolvable | Aggregation
(optional)
The aggregation settings that you can use to customize the output format of your flow data.
fileType?
Type:
string
(optional)
Indicates the file type that Amazon AppFlow places in the Amazon S3 bucket.
prefixConfig?
Type:
IResolvable | Prefix
(optional)
Determines the prefix that Amazon AppFlow applies to the folder name in the Amazon S3 bucket.
You can name folders according to the flow frequency and date.
preserveSourceDataTyping?
Type:
boolean | IResolvable
(optional)
CfnFlow.S3OutputFormatConfigProperty.PreserveSourceDataTyping.

.NET
Java
Python
TypeScript