Module Values.DeleteKxDatabaseRequestSource

Deletes the specified database and all of its associated data. This action is irreversible. You must copy any data out of the database before deleting it if the data is to be retained.

Sourcetype nonrec t = {
  1. environmentId : EnvironmentId.t;
    (*

    A unique identifier for the kdb environment.

    *)
  2. databaseName : DatabaseName.t;
    (*

    The name of the kdb database that you want to delete.

    *)
  3. clientToken : ClientTokenString.t;
    (*

    A token that ensures idempotency. This token expires in 10 minutes.

    *)
}
Sourceval context_ : string
Sourceval make : environmentId:EnvironmentId.t -> databaseName:DatabaseName.t -> clientToken:ClientTokenString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EnvironmentId.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