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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


5174
5175
5176
5177
5178
5179
# File 'lib/aws-sdk-sagemaker/types.rb', line 5174

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)


5174
5175
5176
5177
5178
5179
# File 'lib/aws-sdk-sagemaker/types.rb', line 5174

class ComputeQuotaTarget < Struct.new(
  :team_name,
  :fair_share_weight)
  SENSITIVE = []
  include Aws::Structure
end