Interface CfnIntegration.S3SourcePropertiesProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnIntegration.S3SourcePropertiesProperty.Jsii$Proxy
- Enclosing class:
 - CfnIntegration
 
@Stability(Stable)
public static interface CfnIntegration.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.customerprofiles.*;
 S3SourcePropertiesProperty s3SourcePropertiesProperty = S3SourcePropertiesProperty.builder()
         .bucketName("bucketName")
         // the properties below are optional
         .bucketPrefix("bucketPrefix")
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegration.S3SourcePropertiesPropertystatic final classAn implementation forCfnIntegration.S3SourcePropertiesProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getBucketName
The Amazon S3 bucket name where the source files are stored. - 
getBucketPrefix
The object key for the Amazon S3 bucket in which the source files are stored. - 
builder
 
 -