Interface CfnKnowledgeBasePropsMixin.IOpenSearchServerlessFieldMappingProperty
Contains the names of the fields to which to map information about the vector store.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnKnowledgeBasePropsMixin.IOpenSearchServerlessFieldMappingProperty
Syntax (vb)
Public Interface CfnKnowledgeBasePropsMixin.IOpenSearchServerlessFieldMappingProperty
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.Mixins.Preview.AWS.Bedrock.Mixins;
var openSearchServerlessFieldMappingProperty = new OpenSearchServerlessFieldMappingProperty {
MetadataField = "metadataField",
TextField = "textField",
VectorField = "vectorField"
};
Synopsis
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. |
| VectorField | The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. |
Properties
MetadataField
The name of the field in which Amazon Bedrock stores metadata about the vector store.
string? MetadataField { get; }
Property Value
Remarks
TextField
The name of the field in which Amazon Bedrock stores the raw text from your data.
string? TextField { get; }
Property Value
Remarks
The text is split according to the chunking strategy you choose.
VectorField
The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
string? VectorField { get; }