Class: Aws::MediaConnect::Types::Maintenance
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::Maintenance
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
The maintenance setting of a flow
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maintenance_day ⇒ String
A day of a week when the maintenance will happen.
-
#maintenance_deadline ⇒ String
The Maintenance has to be performed before this deadline in ISO UTC format.
-
#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.
2810 2811 2812 2813 2814 2815 2816 2817 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2810 class Maintenance < Struct.new( :maintenance_day, :maintenance_deadline, :maintenance_scheduled_date, :maintenance_start_hour) SENSITIVE = [] include Aws::Structure end |
#maintenance_deadline ⇒ String
The Maintenance has to be performed before this deadline in ISO UTC format. Example: 2021-01-30T08:30:00Z.
2810 2811 2812 2813 2814 2815 2816 2817 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2810 class Maintenance < Struct.new( :maintenance_day, :maintenance_deadline, :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.
2810 2811 2812 2813 2814 2815 2816 2817 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2810 class Maintenance < Struct.new( :maintenance_day, :maintenance_deadline, :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.
2810 2811 2812 2813 2814 2815 2816 2817 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2810 class Maintenance < Struct.new( :maintenance_day, :maintenance_deadline, :maintenance_scheduled_date, :maintenance_start_hour) SENSITIVE = [] include Aws::Structure end |