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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#day_of_weekString

Required. The day of the week.

Returns:

  • (String)


3222
3223
3224
3225
3226
3227
3228
# File 'lib/aws-sdk-mq/types.rb', line 3222

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

#time_of_dayString

Required. The time, in 24-hour format.

Returns:

  • (String)


3222
3223
3224
3225
3226
3227
3228
# File 'lib/aws-sdk-mq/types.rb', line 3222

class WeeklyStartTime < Struct.new(
  :day_of_week,
  :time_of_day,
  :time_zone)
  SENSITIVE = []
  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)


3222
3223
3224
3225
3226
3227
3228
# File 'lib/aws-sdk-mq/types.rb', line 3222

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