Interface CfnFlowPropsMixin.S3SourcePropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.S3SourcePropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.S3SourcePropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.appflow.*;
S3SourcePropertiesProperty s3SourcePropertiesProperty = S3SourcePropertiesProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.s3InputFormatConfig(S3InputFormatConfigProperty.builder()
.s3InputFileType("s3InputFileType")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.S3SourcePropertiesPropertystatic final classAn implementation forCfnFlowPropsMixin.S3SourcePropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe Amazon S3 bucket name where the source files are stored.default StringThe object key for the Amazon S3 bucket in which the source files are stored.default ObjectWhen you use Amazon S3 as the source, the configuration format that you provide the flow input data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The Amazon S3 bucket name where the source files are stored.Returns union: either
StringorIBucketRef- See Also:
-
getBucketPrefix
The object key for the Amazon S3 bucket in which the source files are stored.- See Also:
-
getS3InputFormatConfig
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.Returns union: either
IResolvableorCfnFlowPropsMixin.S3InputFormatConfigProperty- See Also:
-
builder
-