Amazon Timestream · Schema
Database
A Timestream database resource containing tables for time series data storage.
DatabaseIotTime Series
Properties
| Name | Type | Description |
|---|---|---|
| Arn | string | The Amazon Resource Name that uniquely identifies this database. |
| DatabaseName | string | The name of the Timestream database. |
| TableCount | integer | The total number of tables found within the Timestream database. |
| KmsKeyId | string | The identifier of the KMS key used to encrypt the data stored in the database. |
| CreationTime | string | The time when the database was created. |
| LastUpdatedTime | string | The last time that this database was updated. |
JSON Schema
{
"type": "object",
"description": "A Timestream database resource containing tables for time series data storage.",
"properties": {
"Arn": {
"type": "string",
"description": "The Amazon Resource Name that uniquely identifies this database."
},
"DatabaseName": {
"type": "string",
"description": "The name of the Timestream database."
},
"TableCount": {
"type": "integer",
"description": "The total number of tables found within the Timestream database."
},
"KmsKeyId": {
"type": "string",
"description": "The identifier of the KMS key used to encrypt the data stored in the database."
},
"CreationTime": {
"type": "string",
"format": "date-time",
"description": "The time when the database was created."
},
"LastUpdatedTime": {
"type": "string",
"format": "date-time",
"description": "The last time that this database was updated."
}
},
"required": [
"Arn",
"DatabaseName"
],
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Database"
}