Interface CfnFlowPropsMixin.IS3SourcePropertiesProperty
The properties that are applied when Amazon S3 is being used as the flow source.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppFlow
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnFlowPropsMixin.IS3SourcePropertiesProperty
Syntax (vb)
Public Interface CfnFlowPropsMixin.IS3SourcePropertiesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppFlow;
var s3SourcePropertiesProperty = new S3SourcePropertiesProperty {
BucketName = "bucketName",
BucketPrefix = "bucketPrefix",
S3InputFormatConfig = new S3InputFormatConfigProperty {
S3InputFileType = "s3InputFileType"
}
};
Synopsis
Properties
| BucketName | The Amazon S3 bucket name where the source files are stored. |
| BucketPrefix | The object key for the Amazon S3 bucket in which the source files are stored. |
| S3InputFormatConfig | When you use Amazon S3 as the source, the configuration format that you provide the flow input data. |
Properties
BucketName
The Amazon S3 bucket name where the source files are stored.
object? BucketName { get; }
Property Value
Remarks
BucketPrefix
The object key for the Amazon S3 bucket in which the source files are stored.
string? BucketPrefix { get; }
Property Value
Remarks
S3InputFormatConfig
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.
object? S3InputFormatConfig { get; }