interface S3DataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataSourcePropsMixin_S3DataSourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataSourcePropsMixin » S3DataSourceConfigurationProperty |
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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const s3DataSourceConfigurationProperty: bedrock.CfnDataSourcePropsMixin.S3DataSourceConfigurationProperty = {
bucketArn: 'bucketArn',
bucketOwnerAccountId: 'bucketOwnerAccountId',
inclusionPrefixes: ['inclusionPrefixes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Amazon Resource Name (ARN) of the S3 bucket that contains your data. |
| bucket | string | The account ID for the owner of the S3 bucket. |
| inclusion | string[] | A list of S3 prefixes to include certain files or content. |
bucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
bucketOwnerAccountId?
Type:
string
(optional)
The account ID for the owner of the S3 bucket.
inclusionPrefixes?
Type:
string[]
(optional)
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 .

.NET
Go
Java
Python
TypeScript