Class: Aws::MediaConnect::Types::UpdateMaintenance
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::UpdateMaintenance
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
Update maintenance setting for a flow
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maintenance_day ⇒ String
A day of a week when the maintenance will happen.
-
#maintenance_scheduled_date ⇒ String
A scheduled date in ISO UTC format when the maintenance will happen.
-
#maintenance_start_hour ⇒ String
UTC time when the maintenance will happen.
Instance Attribute Details
#maintenance_day ⇒ String
A day of a week when the maintenance will happen. use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
5238 5239 5240 5241 5242 5243 5244 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5238 class UpdateMaintenance < Struct.new( :maintenance_day, :maintenance_scheduled_date, :maintenance_start_hour) SENSITIVE = [] include Aws::Structure end |
#maintenance_scheduled_date ⇒ String
A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.
5238 5239 5240 5241 5242 5243 5244 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5238 class UpdateMaintenance < Struct.new( :maintenance_day, :maintenance_scheduled_date, :maintenance_start_hour) SENSITIVE = [] include Aws::Structure end |
#maintenance_start_hour ⇒ String
UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00.
5238 5239 5240 5241 5242 5243 5244 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5238 class UpdateMaintenance < Struct.new( :maintenance_day, :maintenance_scheduled_date, :maintenance_start_hour) SENSITIVE = [] include Aws::Structure end |