Create Kx Database
finspace_create_kx_database | R Documentation |
Creates a new kdb database in the environment¶
Description¶
Creates a new kdb database in the environment.
Usage¶
Arguments¶
environmentId
[required] A unique identifier for the kdb environment.
databaseName
[required] The name of the kdb database.
description
A description of the database.
tags
A list of key-value pairs to label the kdb database. You can add up to 50 tags to your kdb database
clientToken
[required] A token that ensures idempotency. This token expires in 10 minutes.
Value¶
A list with the following syntax:
list(
databaseName = "string",
databaseArn = "string",
environmentId = "string",
description = "string",
createdTimestamp = as.POSIXct(
"2015-01-01"
),
lastModifiedTimestamp = as.POSIXct(
"2015-01-01"
)
)