Module Values.RdsFieldMappingSource

Contains the names of the fields to which to map information about the vector store.

Sourcetype nonrec t = {
  1. primaryKeyField : ColumnName.t;
    (*

    The name of the field in which Amazon Bedrock stores the ID for each entry.

    *)
  2. vectorField : ColumnName.t;
    (*

    The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.

    *)
  3. 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.

    *)
  4. metadataField : ColumnName.t;
    (*

    The name of the field in which Amazon Bedrock stores metadata about the vector store.

    *)
  5. customMetadataField : ColumnName.t option;
    (*

    Provide a name for the universal metadata field where Amazon Bedrock will store any custom metadata from your data source.

    *)
}
Sourceval context_ : string
Sourceval make : ?customMetadataField:??? -> primaryKeyField:ColumnName.t -> vectorField:ColumnName.t -> textField:ColumnName.t -> metadataField:ColumnName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ColumnName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t