Class: Aws::TimestreamInfluxDB::Types::MaintenanceSchedule
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamInfluxDB::Types::MaintenanceSchedule
- Defined in:
- gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb
Overview
Specifies the maintenance schedule for a DB instance or cluster, defining when maintenance operations such as patching can be performed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#preferred_maintenance_window ⇒ String
The preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM (UTC).
-
#timezone ⇒ String
The IANA timezone identifier for the maintenance window.
Instance Attribute Details
#preferred_maintenance_window ⇒ String
The preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM (UTC). Day must be one of: Mon, Tue, Wed, Thu, Fri, Sat, Sun. For example, Sun:02:00-Sun:06:00. Provide an empty string to let the system choose a window.
2657 2658 2659 2660 2661 2662 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 2657 class MaintenanceSchedule < Struct.new( :timezone, :preferred_maintenance_window) SENSITIVE = [] include Aws::Structure end |
#timezone ⇒ String
The IANA timezone identifier for the maintenance window. Format: Region/City or UTC. For example, America/New_York or UTC.
2657 2658 2659 2660 2661 2662 |
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 2657 class MaintenanceSchedule < Struct.new( :timezone, :preferred_maintenance_window) SENSITIVE = [] include Aws::Structure end |