Module Values.KxDatabaseConfigurationSource

The configuration of data that is available for querying from this database.

Sourcetype nonrec t = {
  1. databaseName : DatabaseName.t;
    (*

    The name of the kdb database. When this parameter is specified in the structure, S3 with the whole database is included by default.

    *)
  2. cacheConfigurations : KxDatabaseCacheConfigurations.t option;
    (*

    Configuration details for the disk cache used to increase performance reading from a kdb database mounted to the cluster.

    *)
  3. changesetId : ChangesetId.t option;
    (*

    A unique identifier of the changeset that is associated with the cluster.

    *)
  4. dataviewName : KxDataviewName.t option;
    (*

    The name of the dataview to be used for caching historical data on disk.

    *)
  5. dataviewConfiguration : KxDataviewConfiguration.t option;
    (*

    The configuration of the dataview to be used with specified cluster.

    *)
}
Sourceval context_ : string
Sourceval make : ?cacheConfigurations:??? -> ?changesetId:??? -> ?dataviewName:??? -> ?dataviewConfiguration:??? -> databaseName:DatabaseName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of DbPath.t ] list | `String of KxCacheStorageType.t ]) list ] list | `String of DatabaseName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of BooleanValue.t | `List of [> `String of DbPath.t ] list | `String of KxVolumeName.t ]) list ] list | `String of KxDataviewName.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