List Databases
timestreamwrite_list_databases | R Documentation |
Returns a list of your Timestream databases¶
Description¶
Returns a list of your Timestream databases. Service quotas apply. See code sample for details.
Usage¶
Arguments¶
NextToken
The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
MaxResults
The total number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
Value¶
A list with the following syntax:
list(
Databases = list(
list(
Arn = "string",
DatabaseName = "string",
TableCount = 123,
KmsKeyId = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)