Class: Aws::MediaConnect::Types::AddMaintenance
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::AddMaintenance
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
Create 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_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.
434 435 436 437 438 439 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 434 class AddMaintenance < Struct.new( :maintenance_day, :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.
434 435 436 437 438 439 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 434 class AddMaintenance < Struct.new( :maintenance_day, :maintenance_start_hour) SENSITIVE = [] include Aws::Structure end |