Class: Aws::SageMaker::Types::ComputeQuotaTarget

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#fair_share_weightInteger

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.

Returns:

  • (Integer)


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_nameString

Name of the team to allocate compute resources to.

Returns:

  • (String)


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