Class: Aws::Batch::Types::ServiceJobCapacityUsageSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::ServiceJobCapacityUsageSummary
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
The capacity usage for a service job, including the unit of measure and quantity of resources being used.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capacity_unit ⇒ String
The unit of measure for the service job capacity usage.
-
#quantity ⇒ Float
The quantity of capacity being used by the service job, measured in the units specified by
capacityUnit.
Instance Attribute Details
#capacity_unit ⇒ String
The unit of measure for the service job capacity usage. For service
jobs, this is NUM_INSTANCES.
8695 8696 8697 8698 8699 8700 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8695 class ServiceJobCapacityUsageSummary < Struct.new( :capacity_unit, :quantity) SENSITIVE = [] include Aws::Structure end |
#quantity ⇒ Float
The quantity of capacity being used by the service job, measured in
the units specified by capacityUnit.
8695 8696 8697 8698 8699 8700 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8695 class ServiceJobCapacityUsageSummary < Struct.new( :capacity_unit, :quantity) SENSITIVE = [] include Aws::Structure end |