Class: Aws::Deadline::Types::BudgetSchedule

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb

Overview

Note:

BudgetSchedule is a union - when making an API calls you must set exactly one of the members.

Note:

BudgetSchedule is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of BudgetSchedule corresponding to the set member.

The start and end time of the budget.

Direct Known Subclasses

Fixed, Unknown

Defined Under Namespace

Classes: Fixed, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fixedTypes::FixedBudgetSchedule

The fixed start and end time of the budget's schedule.



702
703
704
705
706
707
708
709
710
711
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 702

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

  class Fixed < BudgetSchedule; end
  class Unknown < BudgetSchedule; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



702
703
704
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 702

def unknown
  @unknown
end