Interface CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.bedrock.*;
 S3DataSourceConfigurationProperty s3DataSourceConfigurationProperty = S3DataSourceConfigurationProperty.builder()
         .bucketArn("bucketArn")
         .bucketOwnerAccountId("bucketOwnerAccountId")
         .inclusionPrefixes(List.of("inclusionPrefixes"))
         .build();
 

See Also: