Class: Aws::Batch::Types::QuotaShareCapacityLimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::QuotaShareCapacityLimit
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Defines the capacity limit for a quota share, or the type and maximum quantity of a particular resource that can be allocated to jobs in the quota share without borrowing.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capacity_unit ⇒ String
The unit of compute capacity for the capacityLimit.
-
#max_capacity ⇒ Integer
The maximum capacity available for the quota share.
Instance Attribute Details
#capacity_unit ⇒ String
The unit of compute capacity for the capacityLimit. For example,
ml.m5.large.
8388 8389 8390 8391 8392 8393 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8388 class QuotaShareCapacityLimit < Struct.new( :max_capacity, :capacity_unit) SENSITIVE = [] include Aws::Structure end |
#max_capacity ⇒ Integer
The maximum capacity available for the quota share. This value represents the maximum quantity of a resource that can be allocated to jobs in the quota share without borrowing.
8388 8389 8390 8391 8392 8393 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8388 class QuotaShareCapacityLimit < Struct.new( :max_capacity, :capacity_unit) SENSITIVE = [] include Aws::Structure end |