Class: Aws::TimestreamInfluxDB::Types::MaintenanceSchedule

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#preferred_maintenance_windowString

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.

Returns:

  • (String)


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

#timezoneString

The IANA timezone identifier for the maintenance window. Format: Region/City or UTC. For example, America/New_York or UTC.

Returns:

  • (String)


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