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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.S3DataSourceConfigurationProperty
static final class
An 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.For more information, see Organizing objects using prefixes .
- See Also:
-
builder
-