Class: Aws::Deadline::Types::UsageTrackingResource

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

QueueId, Unknown

Defined Under Namespace

Classes: QueueId, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#queue_idString

The queue ID.

Returns:

  • (String)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



9333
9334
9335
# File 'lib/aws-sdk-deadline/types.rb', line 9333

def unknown
  @unknown
end