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.
10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 10092 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
10092 10093 10094 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 10092 def unknown @unknown end |