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

.NET
Go
Java
Python
TypeScript