interface UpsolverDestinationPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.UpsolverDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_UpsolverDestinationPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.UpsolverDestinationPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.UpsolverDestinationPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » UpsolverDestinationPropertiesProperty |
The properties that are applied when Upsolver is used as a 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 upsolverDestinationPropertiesProperty: appflow_mixins.CfnFlowPropsMixin.UpsolverDestinationPropertiesProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
s3OutputFormatConfig: {
aggregationConfig: {
aggregationType: 'aggregationType',
targetFileSize: 123,
},
fileType: 'fileType',
prefixConfig: {
pathPrefixHierarchy: ['pathPrefixHierarchy'],
prefixFormat: 'prefixFormat',
prefixType: 'prefixType',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data. |
| bucket | string | The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files. |
| s3 | IResolvable | Upsolver | The configuration that determines how data is formatted when Upsolver is used as the flow destination. |
bucketName?
Type:
string
(optional)
The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
bucketPrefix?
Type:
string
(optional)
The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.
s3OutputFormatConfig?
Type:
IResolvable | Upsolver
(optional)
The configuration that determines how data is formatted when Upsolver is used as the flow destination.

.NET
Go
Java
Python
TypeScript