Module Values.RedisEnterpriseCloudConfigurationSource

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

Sourcetype nonrec t = {
  1. endpoint : RedisEnterpriseCloudEndpoint.t;
    (*

    The endpoint URL of the Redis Enterprise Cloud database.

    *)
  2. vectorIndexName : RedisEnterpriseCloudIndexName.t;
    (*

    The name of the vector index.

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

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

    *)
  4. fieldMapping : RedisEnterpriseCloudFieldMapping.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : endpoint:RedisEnterpriseCloudEndpoint.t -> vectorIndexName:RedisEnterpriseCloudIndexName.t -> credentialsSecretArn:SecretArn.t -> fieldMapping:RedisEnterpriseCloudFieldMapping.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RedisEnterpriseCloudEndpoint.t | `Structure of (string * [> `String of FieldName.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