Class: Aws::TimestreamInfluxDB::Types::DbBackupConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamInfluxDB::Types::DbBackupConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreaminfluxdb/types.rb
Overview
Specifies the configuration for an automated backup schedule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_schedule ⇒ String
A custom cron schedule expression for the backup.
-
#enabled ⇒ Boolean
Specifies whether this backup configuration is enabled.
-
#retention_days ⇒ Integer
The number of days to retain automated backups.
-
#type ⇒ String
The type of automated backup schedule.
Instance Attribute Details
#custom_schedule ⇒ String
A custom cron schedule expression for the backup. Required when type is CUSTOM_SCHEDULE.
822 823 824 825 826 827 828 829 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 822 class DbBackupConfiguration < Struct.new( :type, :retention_days, :enabled, :custom_schedule) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Specifies whether this backup configuration is enabled.
822 823 824 825 826 827 828 829 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 822 class DbBackupConfiguration < Struct.new( :type, :retention_days, :enabled, :custom_schedule) SENSITIVE = [] include Aws::Structure end |
#retention_days ⇒ Integer
The number of days to retain automated backups. Valid values are 1 to 365.
822 823 824 825 826 827 828 829 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 822 class DbBackupConfiguration < Struct.new( :type, :retention_days, :enabled, :custom_schedule) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of automated backup schedule. Valid values are HOURLY, DAILY, WEEKLY, MONTHLY, CUSTOM_SCHEDULE, and CONTINUOUS.
822 823 824 825 826 827 828 829 |
# File 'lib/aws-sdk-timestreaminfluxdb/types.rb', line 822 class DbBackupConfiguration < Struct.new( :type, :retention_days, :enabled, :custom_schedule) SENSITIVE = [] include Aws::Structure end |