aws-cdk-lib.aws_appflow.CfnFlow.S3SourcePropertiesProperty

interface S3SourcePropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnFlow.S3SourcePropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_S3SourcePropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnFlow.S3SourcePropertiesProperty
Pythonaws_cdk.aws_appflow.CfnFlow.S3SourcePropertiesProperty
TypeScript aws-cdk-lib » aws_appflow » CfnFlow » S3SourcePropertiesProperty

The properties that are applied when Amazon S3 is being used as the flow source.

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 s3SourcePropertiesProperty: appflow.CfnFlow.S3SourcePropertiesProperty = {
  bucketName: 'bucketName',
  bucketPrefix: 'bucketPrefix',

  // the properties below are optional
  s3InputFormatConfig: {
    s3InputFileType: 's3InputFileType',
  },
};

Properties

NameTypeDescription
bucketNamestringThe Amazon S3 bucket name where the source files are stored.
bucketPrefixstringThe object key for the Amazon S3 bucket in which the source files are stored.
s3InputFormatConfig?IResolvable | S3InputFormatConfigPropertyWhen you use Amazon S3 as the source, the configuration format that you provide the flow input data.

bucketName

Type: string

The Amazon S3 bucket name where the source files are stored.


bucketPrefix

Type: string

The object key for the Amazon S3 bucket in which the source files are stored.


s3InputFormatConfig?

Type: IResolvable | S3InputFormatConfigProperty (optional)

When you use Amazon S3 as the source, the configuration format that you provide the flow input data.