aws-cdk-lib.aws_appflow.CfnFlow.S3DestinationPropertiesProperty

interface S3DestinationPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnFlow.S3DestinationPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_S3DestinationPropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnFlow.S3DestinationPropertiesProperty
Pythonaws_cdk.aws_appflow.CfnFlow.S3DestinationPropertiesProperty
TypeScript aws-cdk-lib » aws_appflow » CfnFlow » 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const s3DestinationPropertiesProperty: appflow.CfnFlow.S3DestinationPropertiesProperty = {
  bucketName: 'bucketName',

  // the properties below are optional
  bucketPrefix: 'bucketPrefix',
  s3OutputFormatConfig: {
    aggregationConfig: {
      aggregationType: 'aggregationType',
      targetFileSize: 123,
    },
    fileType: 'fileType',
    prefixConfig: {
      pathPrefixHierarchy: ['pathPrefixHierarchy'],
      prefixFormat: 'prefixFormat',
      prefixType: 'prefixType',
    },
    preserveSourceDataTyping: false,
  },
};

Properties

NameTypeDescription
bucketNamestringThe Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
bucketPrefix?stringThe object key for the destination bucket in which Amazon AppFlow places the files.
s3OutputFormatConfig?IResolvable | S3OutputFormatConfigPropertyThe configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.

bucketName

Type: string

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 | S3OutputFormatConfigProperty (optional)

The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.