Class: Aws::TimestreamInfluxDB::Types::CreateDbBackupInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamInfluxDB::Types::CreateDbBackupInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreaminfluxdb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_resource_id ⇒ String
The id of the DB instance or DB cluster to back up.
-
#name ⇒ String
The name of the backup.
-
#retention_days ⇒ Integer
The number of days to retain the backup.
-
#tags ⇒ Hash<String,String>
A list of key-value pairs to associate with the backup.
Instance Attribute Details
#db_resource_id ⇒ String
The id of the DB instance or DB cluster to back up.
96 97 98 99 100 101 102 103 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 96 class CreateDbBackupInput < Struct.new( :name, :db_resource_id, :retention_days, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the backup. Must be unique within the account and region.
96 97 98 99 100 101 102 103 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 96 class CreateDbBackupInput < Struct.new( :name, :db_resource_id, :retention_days, :tags) SENSITIVE = [] include Aws::Structure end |
#retention_days ⇒ Integer
The number of days to retain the backup. Valid values are 1 to 3650.
96 97 98 99 100 101 102 103 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 96 class CreateDbBackupInput < Struct.new( :name, :db_resource_id, :retention_days, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A list of key-value pairs to associate with the backup.
96 97 98 99 100 101 102 103 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 96 class CreateDbBackupInput < Struct.new( :name, :db_resource_id, :retention_days, :tags) SENSITIVE = [] include Aws::Structure end |