Class: Aws::Batch::Types::FairshareUtilizationDetail

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

Overview

The fairshare utilization for a job queue, including the number of active shares and top capacity utilization.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#active_share_countInteger

The total number of active shares in the fairshare scheduling job queue that are currently utilizing capacity.

Returns:

  • (Integer)


5533
5534
5535
5536
5537
5538
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5533

class FairshareUtilizationDetail < Struct.new(
  :active_share_count,
  :top_capacity_utilization)
  SENSITIVE = []
  include Aws::Structure
end

#top_capacity_utilizationArray<Types::FairshareCapacityUtilization>

A list of the top 20 shares with the highest capacity utilization, ordered by usage amount.



5533
5534
5535
5536
5537
5538
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5533

class FairshareUtilizationDetail < Struct.new(
  :active_share_count,
  :top_capacity_utilization)
  SENSITIVE = []
  include Aws::Structure
end