Class: Aws::TimestreamWrite::Types::Database
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::Database
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamwrite/types.rb
Overview
A top level container for a table. Databases and tables are the fundamental management concepts in Amazon Timestream. All tables in a database are encrypted with the same KMS key.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name that uniquely identifies this database.
-
#creation_time ⇒ Time
The time when the database was created, calculated from the Unix epoch time.
-
#database_name ⇒ String
The name of the Timestream database.
-
#kms_key_id ⇒ String
The identifier of the KMS key used to encrypt the data stored in the database.
-
#last_updated_time ⇒ Time
The last time that this database was updated.
-
#table_count ⇒ Integer
The total number of tables found within a Timestream database.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name that uniquely identifies this database.
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 202 class Database < Struct.new( :arn, :database_name, :table_count, :kms_key_id, :creation_time, :last_updated_time) SENSITIVE = [] include Aws::Structure end |
#creation_time ⇒ Time
The time when the database was created, calculated from the Unix epoch time.
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 202 class Database < Struct.new( :arn, :database_name, :table_count, :kms_key_id, :creation_time, :last_updated_time) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The name of the Timestream database.
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 202 class Database < Struct.new( :arn, :database_name, :table_count, :kms_key_id, :creation_time, :last_updated_time) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
The identifier of the KMS key used to encrypt the data stored in the database.
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 202 class Database < Struct.new( :arn, :database_name, :table_count, :kms_key_id, :creation_time, :last_updated_time) SENSITIVE = [] include Aws::Structure end |
#last_updated_time ⇒ Time
The last time that this database was updated.
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 202 class Database < Struct.new( :arn, :database_name, :table_count, :kms_key_id, :creation_time, :last_updated_time) SENSITIVE = [] include Aws::Structure end |
#table_count ⇒ Integer
The total number of tables found within a Timestream database.
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 202 class Database < Struct.new( :arn, :database_name, :table_count, :kms_key_id, :creation_time, :last_updated_time) SENSITIVE = [] include Aws::Structure end |