interface UpsolverS3OutputFormatConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_UpsolverS3OutputFormatConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » UpsolverS3OutputFormatConfigProperty |
The configuration that determines how Amazon AppFlow formats the flow output data when Upsolver 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 { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const upsolverS3OutputFormatConfigProperty: appflow_mixins.CfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty = {
aggregationConfig: {
aggregationType: 'aggregationType',
targetFileSize: 123,
},
fileType: 'fileType',
prefixConfig: {
pathPrefixHierarchy: ['pathPrefixHierarchy'],
prefixFormat: 'prefixFormat',
prefixType: 'prefixType',
},
};
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 Upsolver Amazon S3 bucket. |
| prefix | IResolvable | Prefix | Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination. |
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 Upsolver Amazon S3 bucket.
prefixConfig?
Type:
IResolvable | Prefix
(optional)
Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.

.NET
Go
Java
Python
TypeScript