Class: Aws::Deadline::Types::SessionsStatisticsResources

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb

Overview

Note:

SessionsStatisticsResources is a union - when making an API calls you must set exactly one of the members.

Specifies the fleet IDs or queue IDs to return statistics. You can specify only fleet IDs or queue IDS, not both.

Direct Known Subclasses

FleetIds, QueueIds, Unknown

Defined Under Namespace

Classes: FleetIds, QueueIds, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fleet_idsArray<String>

One to 10 fleet IDs that specify the fleets to return statistics for. If you specify the fleetIds field, you can't specify the queueIds field.

Returns:

  • (Array<String>)


7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 7302

class SessionsStatisticsResources < Struct.new(
  :fleet_ids,
  :queue_ids,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class FleetIds < SessionsStatisticsResources; end
  class QueueIds < SessionsStatisticsResources; end
  class Unknown < SessionsStatisticsResources; end
end

#queue_idsArray<String>

One to 10 queue IDs that specify the queues to return statistics for. If you specify the queueIds field, you can't specify the fleetIds field.

Returns:

  • (Array<String>)


7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 7302

class SessionsStatisticsResources < Struct.new(
  :fleet_ids,
  :queue_ids,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class FleetIds < SessionsStatisticsResources; end
  class QueueIds < SessionsStatisticsResources; end
  class Unknown < SessionsStatisticsResources; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7302
7303
7304
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 7302

def unknown
  @unknown
end