Class: Aws::MediaConnect::Types::MaintenanceSchedule

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

Unknown, Window

Defined Under Namespace

Classes: Unknown, Window

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4399
4400
4401
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 4399

def unknown
  @unknown
end

#windowTypes::WindowMaintenanceSchedule

Defines a specific time window for maintenance operations.



4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 4399

class MaintenanceSchedule < Struct.new(
  :window,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Window < MaintenanceSchedule; end
  class Unknown < MaintenanceSchedule; end
end