Class: Aws::MediaConnect::Types::MaintenanceSchedule
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::MaintenanceSchedule
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
Note:
MaintenanceSchedule is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MaintenanceSchedule corresponding to the set member.
The details of the maintenance schedule.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#window ⇒ Types::WindowMaintenanceSchedule
Defines a specific time window for maintenance operations.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
4347 4348 4349 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 4347 def unknown @unknown end |
#window ⇒ Types::WindowMaintenanceSchedule
Defines a specific time window for maintenance operations.
4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 4347 class MaintenanceSchedule < Struct.new( :window, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Window < MaintenanceSchedule; end class Unknown < MaintenanceSchedule; end end |