Class: Aws::Deadline::Types::UsageTrackingResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::UsageTrackingResource
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-deadline/types.rb
Overview
Note:
UsageTrackingResource is a union - when making an API calls you must set exactly one of the members.
Note:
UsageTrackingResource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UsageTrackingResource corresponding to the set member.
The usage details of the allotted budget.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#queue_id ⇒ String
The queue ID.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#queue_id ⇒ String
The queue ID.
9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 |
# File 'lib/aws-sdk-deadline/types.rb', line 9333 class UsageTrackingResource < Struct.new( :queue_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class QueueId < UsageTrackingResource; end class Unknown < UsageTrackingResource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
9333 9334 9335 |
# File 'lib/aws-sdk-deadline/types.rb', line 9333 def unknown @unknown end |