Module Values.RdsConfigurationSource

Contains details about the storage configuration of the knowledge base in Amazon RDS. For more information, see Create a vector index in Amazon RDS.

Sourcetype nonrec t = {
  1. resourceArn : RdsArn.t;
    (*

    The Amazon Resource Name (ARN) of the vector store.

    *)
  2. credentialsSecretArn : SecretArn.t;
    (*

    The Amazon Resource Name (ARN) of the secret that you created in Secrets Manager that is linked to your Amazon RDS database.

    *)
  3. databaseName : RdsDatabaseName.t;
    (*

    The name of your Amazon RDS database.

    *)
  4. tableName : RdsTableName.t;
    (*

    The name of the table in the database.

    *)
  5. fieldMapping : RdsFieldMapping.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : resourceArn:RdsArn.t -> credentialsSecretArn:SecretArn.t -> databaseName:RdsDatabaseName.t -> tableName:RdsTableName.t -> fieldMapping:RdsFieldMapping.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RdsArn.t | `Structure of (string * [> `String of ColumnName.t ]) list ]) 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