interface UpsolverS3OutputFormatConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnFlowPropsMixin_UpsolverS3OutputFormatConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » 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 { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const upsolverS3OutputFormatConfigProperty: appflow.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