Class: Aws::Deadline::Types::UsageTrackingResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::UsageTrackingResource
- Defined in:
- gems/aws-sdk-deadline/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.
10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 10393 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
10393 10394 10395 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 10393 def unknown @unknown end |