Class: Aws::TimestreamWrite::Types::Database
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::TimestreamWrite::Types::Database
 
- Defined in:
- gems/aws-sdk-timestreamwrite/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.
| 514 515 516 517 518 519 520 521 522 523 | # File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 514 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.
| 514 515 516 517 518 519 520 521 522 523 | # File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 514 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.
| 514 515 516 517 518 519 520 521 522 523 | # File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 514 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.
| 514 515 516 517 518 519 520 521 522 523 | # File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 514 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.
| 514 515 516 517 518 519 520 521 522 523 | # File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 514 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.
| 514 515 516 517 518 519 520 521 522 523 | # File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 514 class Database < Struct.new( :arn, :database_name, :table_count, :kms_key_id, :creation_time, :last_updated_time) SENSITIVE = [] include Aws::Structure end |