Class: Aws::Deadline::Types::BudgetSchedule
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::BudgetSchedule
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fixed ⇒ Types::FixedBudgetSchedule
The fixed start and end time of the budget’s schedule.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#fixed ⇒ Types::FixedBudgetSchedule
The fixed start and end time of the budget’s schedule.
755 756 757 758 759 760 761 762 763 764 |
# File 'lib/aws-sdk-deadline/types.rb', line 755 class BudgetSchedule < Struct.new( :fixed, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Fixed < BudgetSchedule; end class Unknown < BudgetSchedule; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
755 756 757 |
# File 'lib/aws-sdk-deadline/types.rb', line 755 def unknown @unknown end |