interface S3SourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.S3SourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_S3SourcePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.S3SourcePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.S3SourcePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » 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 { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const s3SourcePropertiesProperty: appflow_mixins.CfnFlowPropsMixin.S3SourcePropertiesProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
s3InputFormatConfig: {
s3InputFileType: 's3InputFileType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Amazon S3 bucket name where the source files are stored. |
| bucket | string | The object key for the Amazon S3 bucket in which the source files are stored. |
| s3 | IResolvable | S3 | When you use Amazon S3 as the source, the configuration format that you provide the flow input data. |
bucketName?
Type:
string
(optional)
The Amazon S3 bucket name where the source files are stored.
bucketPrefix?
Type:
string
(optional)
The object key for the Amazon S3 bucket in which the source files are stored.
s3InputFormatConfig?
Type:
IResolvable | S3
(optional)
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.

.NET
Go
Java
Python
TypeScript