Values.RdsFieldMappingSourceContains the names of the fields to which to map information about the vector store.
type nonrec t = {primaryKeyField : ColumnName.t;The name of the field in which Amazon Bedrock stores the ID for each entry.
*)vectorField : ColumnName.t;The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
*)textField : ColumnName.t;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.
*)metadataField : ColumnName.t;The name of the field in which Amazon Bedrock stores metadata about the vector store.
*)customMetadataField : ColumnName.t option;Provide a name for the universal metadata field where Amazon Bedrock will store any custom metadata from your data source.
*)}val make :
?customMetadataField:??? ->
primaryKeyField:ColumnName.t ->
vectorField:ColumnName.t ->
textField:ColumnName.t ->
metadataField:ColumnName.t ->
unit ->
t