Skip to content

Describe Database

timestreamwrite_describe_database R Documentation

Returns information about the database, including the database name, time that the database was created, and the total number of tables found within the database

Description

Returns information about the database, including the database name, time that the database was created, and the total number of tables found within the database. Service quotas apply. See code sample for details.

Usage

timestreamwrite_describe_database(DatabaseName)

Arguments

DatabaseName

[required] The name of the Timestream database.

Value

A list with the following syntax:

list(
  Database = list(
    Arn = "string",
    DatabaseName = "string",
    TableCount = 123,
    KmsKeyId = "string",
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdatedTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$describe_database(
  DatabaseName = "string"
)