Class CfnKnowledgeBase.RdsFieldMappingProperty
Contains the names of the fields to which to map information about the vector store.
Inheritance
Implements
Namespace: Amazon.CDK.AwsBedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RdsFieldMappingProperty : Object, CfnKnowledgeBase.IRdsFieldMappingProperty
Syntax (vb)
Public Class RdsFieldMappingProperty
Inherits Object
Implements CfnKnowledgeBase.IRdsFieldMappingProperty
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 rdsFieldMappingProperty = new RdsFieldMappingProperty {
MetadataField = "metadataField",
PrimaryKeyField = "primaryKeyField",
TextField = "textField",
VectorField = "vectorField"
};
Synopsis
Constructors
Rds |
Properties
Metadata |
The name of the field in which Amazon Bedrock stores metadata about the vector store. |
Primary |
The name of the field in which Amazon Bedrock stores the ID for each entry. |
Text |
The name of the field in which Amazon Bedrock stores the raw text from your data. |
Vector |
The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. |
Constructors
RdsFieldMappingProperty()
public RdsFieldMappingProperty()
Properties
MetadataField
The name of the field in which Amazon Bedrock stores metadata about the vector store.
public string MetadataField { get; set; }
Property Value
System.
Remarks
PrimaryKeyField
The name of the field in which Amazon Bedrock stores the ID for each entry.
public string PrimaryKeyField { get; set; }
Property Value
System.
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
System.
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.
public string VectorField { get; set; }
Property Value
System.