Class CfnKnowledgeBase.PineconeFieldMappingProperty
Contains the names of the fields to which to map information about the vector store.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnKnowledgeBase.PineconeFieldMappingProperty : CfnKnowledgeBase.IPineconeFieldMappingProperty
Syntax (vb)
Public Class CfnKnowledgeBase.PineconeFieldMappingProperty Implements CfnKnowledgeBase.IPineconeFieldMappingProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var pineconeFieldMappingProperty = new PineconeFieldMappingProperty {
MetadataField = "metadataField",
TextField = "textField"
};
Synopsis
Constructors
| PineconeFieldMappingProperty() | Contains the names of the fields to which to map information about the vector store. |
Properties
| MetadataField | The name of the field in which Amazon Bedrock stores metadata about the vector store. |
| TextField | The name of the field in which Amazon Bedrock stores the raw text from your data. |
Constructors
PineconeFieldMappingProperty()
Contains the names of the fields to which to map information about the vector store.
public PineconeFieldMappingProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var pineconeFieldMappingProperty = new PineconeFieldMappingProperty {
MetadataField = "metadataField",
TextField = "textField"
};
Properties
MetadataField
The name of the field in which Amazon Bedrock stores metadata about the vector store.
public string MetadataField { get; set; }
Property Value
Remarks
TextField
The name of the field in which Amazon Bedrock stores the raw text from your data.
public string TextField { get; set; }
Property Value
Remarks
The text is split according to the chunking strategy you choose.