Class: Aws::SageMaker::Types::ComputeQuotaTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ComputeQuotaTarget
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
The target entity to allocate compute resources to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fair_share_weight ⇒ Integer
Assigned entity fair-share weight.
-
#team_name ⇒ String
Name of the team to allocate compute resources to.
Instance Attribute Details
#fair_share_weight ⇒ Integer
Assigned entity fair-share weight. Idle compute will be shared
across entities based on these assigned weights. This weight is only
used when FairShare
is enabled.
A weight of 0 is the lowest priority and 100 is the highest. Weight 0 is the default.
5163 5164 5165 5166 5167 5168 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5163 class ComputeQuotaTarget < Struct.new( :team_name, :fair_share_weight) SENSITIVE = [] include Aws::Structure end |
#team_name ⇒ String
Name of the team to allocate compute resources to.
5163 5164 5165 5166 5167 5168 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 5163 class ComputeQuotaTarget < Struct.new( :team_name, :fair_share_weight) SENSITIVE = [] include Aws::Structure end |