List Kx Databases
finspace_list_kx_databases | R Documentation |
Returns a list of all the databases in the kdb environment¶
Description¶
Returns a list of all the databases in the kdb environment.
Usage¶
finspace_list_kx_databases(environmentId, nextToken, maxResults)
Arguments¶
environmentId |
[required] A unique identifier for the kdb environment. |
nextToken |
A token that indicates where a results page should begin. |
maxResults |
The maximum number of results to return in this request. |
Value¶
A list with the following syntax:
list(
kxDatabases = list(
list(
databaseName = "string",
createdTimestamp = as.POSIXct(
"2015-01-01"
),
lastModifiedTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_kx_databases(
environmentId = "string",
nextToken = "string",
maxResults = 123
)