Interface CfnDataSource.S3DataSourceConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.S3DataSourceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration information to connect to Amazon S3 as your data 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.bedrock.*;
 S3DataSourceConfigurationProperty s3DataSourceConfigurationProperty = S3DataSourceConfigurationProperty.builder()
         .bucketArn("bucketArn")
         // the properties below are optional
         .bucketOwnerAccountId("bucketOwnerAccountId")
         .inclusionPrefixes(List.of("inclusionPrefixes"))
         .build();
 

See Also: