interface S3VectorsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBase.S3VectorsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_S3VectorsConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.S3VectorsConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.S3VectorsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » S3VectorsConfigurationProperty |
Contains the storage configuration of the knowledge base for S3 vectors.
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-lib';
const s3VectorsConfigurationProperty: bedrock.CfnKnowledgeBase.S3VectorsConfigurationProperty = {
indexArn: 'indexArn',
indexName: 'indexName',
vectorBucketArn: 'vectorBucketArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| index | string | The Amazon Resource Name (ARN) of the vector index used for the knowledge base. |
| index | string | The name of the vector index used for the knowledge base. |
| vector | string | The Amazon Resource Name (ARN) of the S3 bucket where vector embeddings are stored. |
indexArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the vector index used for the knowledge base.
This ARN identifies the specific vector index resource within Amazon Bedrock.
indexName?
Type:
string
(optional)
The name of the vector index used for the knowledge base.
This name identifies the vector index within the Amazon Bedrock service.
vectorBucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the S3 bucket where vector embeddings are stored.
This bucket contains the vector data used by the knowledge base.

.NET
Go
Java
Python
TypeScript