Class: Aws::MQ::Types::WeeklyStartTime

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mq/types.rb

Overview

Note:

When making an API call, you may pass WeeklyStartTime data as a hash:

{
  day_of_week: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
  time_of_day: "__string",
  time_zone: "__string",
}

The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.

Instance Attribute Summary collapse

Instance Attribute Details

#day_of_weekString

Required. The day of the week.

Returns:

  • (String)


2170
2171
2172
2173
2174
2175
# File 'lib/aws-sdk-mq/types.rb', line 2170

class WeeklyStartTime < Struct.new(
  :day_of_week,
  :time_of_day,
  :time_zone)
  include Aws::Structure
end

#time_of_dayString

Required. The time, in 24-hour format.

Returns:

  • (String)


2170
2171
2172
2173
2174
2175
# File 'lib/aws-sdk-mq/types.rb', line 2170

class WeeklyStartTime < Struct.new(
  :day_of_week,
  :time_of_day,
  :time_zone)
  include Aws::Structure
end

#time_zoneString

The time zone, UTC by default, in either the Country/City format, or the UTC offset format.

Returns:

  • (String)


2170
2171
2172
2173
2174
2175
# File 'lib/aws-sdk-mq/types.rb', line 2170

class WeeklyStartTime < Struct.new(
  :day_of_week,
  :time_of_day,
  :time_zone)
  include Aws::Structure
end