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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.S3DataSourceConfigurationPropertystatic final classAn implementation forCfnDataSource.S3DataSourceConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketArn
The Amazon Resource Name (ARN) of the S3 bucket that contains your data.- See Also:
-
getBucketOwnerAccountId
The account ID for the owner of the S3 bucket.- See Also:
-
getInclusionPrefixes
A list of S3 prefixes to include certain files or content.This field is an array with a maximum of one item, which can contain a string that has a maximum length of 300 characters. For more information, see Organizing objects using prefixes .
- See Also:
-
builder
-