interface PineconeFieldMappingProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrock.CfnKnowledgeBase.PineconeFieldMappingProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_PineconeFieldMappingProperty |
![]() | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.PineconeFieldMappingProperty |
![]() | aws_cdk.aws_bedrock.CfnKnowledgeBase.PineconeFieldMappingProperty |
![]() | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » PineconeFieldMappingProperty |
Contains the names of the fields to which to map information about the vector store.
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 pineconeFieldMappingProperty: bedrock.CfnKnowledgeBase.PineconeFieldMappingProperty = {
metadataField: 'metadataField',
textField: 'textField',
};
Properties
Name | Type | Description |
---|---|---|
metadata | string | The name of the field in which Amazon Bedrock stores metadata about the vector store. |
text | string | The name of the field in which Amazon Bedrock stores the raw text from your data. |
metadataField
Type:
string
The name of the field in which Amazon Bedrock stores metadata about the vector store.
textField
Type:
string
The name of the field in which Amazon Bedrock stores the raw text from your data.
The text is split according to the chunking strategy you choose.