Class: Aws::TimestreamWrite::Types::CreateDatabaseRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::CreateDatabaseRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamwrite/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_name ⇒ String
The name of the Timestream database.
-
#kms_key_id ⇒ String
The KMS key for the database.
-
#tags ⇒ Array<Types::Tag>
A list of key-value pairs to label the table.
Instance Attribute Details
#database_name ⇒ String
The name of the Timestream database.
263 264 265 266 267 268 269 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 263 class CreateDatabaseRequest < Struct.new( :database_name, :kms_key_id, :tags) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
The KMS key for the database. If the KMS key is not specified, the database will be encrypted with a Timestream managed KMS key located in your account. For more information, see [Amazon Web Services managed keys].
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
263 264 265 266 267 268 269 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 263 class CreateDatabaseRequest < Struct.new( :database_name, :kms_key_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of key-value pairs to label the table.
263 264 265 266 267 268 269 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 263 class CreateDatabaseRequest < Struct.new( :database_name, :kms_key_id, :tags) SENSITIVE = [] include Aws::Structure end |