Class: Aws::Batch::Types::FairshareUtilizationDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::FairshareUtilizationDetail
- 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
-
#active_share_count ⇒ Integer
The total number of active shares in the fairshare scheduling job queue that are currently utilizing capacity.
-
#top_capacity_utilization ⇒ Array<Types::FairshareCapacityUtilization>
A list of the top 20 shares with the highest capacity utilization, ordered by usage amount.
Instance Attribute Details
#active_share_count ⇒ Integer
The total number of active shares in the fairshare scheduling job queue that are currently utilizing capacity.
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_utilization ⇒ Array<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 |