Class: Aws::MQ::Types::WeeklyStartTime
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::WeeklyStartTime
- 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
-
#day_of_week ⇒ String
Required.
-
#time_of_day ⇒ String
Required.
-
#time_zone ⇒ String
The time zone, UTC by default, in either the Country/City format, or the UTC offset format.
Instance Attribute Details
#day_of_week ⇒ String
Required. The day of the week.
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_day ⇒ String
Required. The time, in 24-hour format.
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_zone ⇒ String
The time zone, UTC by default, in either the Country/City format, or the UTC offset format.
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 |