Interface CfnFlow.S3SourcePropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlow.S3SourcePropertiesProperty.Jsii$Proxy
Enclosing class:
CfnFlow

@Stability(Stable) public static interface CfnFlow.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.services.appflow.*;
 S3SourcePropertiesProperty s3SourcePropertiesProperty = S3SourcePropertiesProperty.builder()
         .bucketName("bucketName")
         .bucketPrefix("bucketPrefix")
         // the properties below are optional
         .s3InputFormatConfig(S3InputFormatConfigProperty.builder()
                 .s3InputFileType("s3InputFileType")
                 .build())
         .build();
 

See Also: