Class: Aws::SageMaker::Types::PriorityClass

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Priority class configuration. When included in PriorityClasses, these class configurations define how tasks are queued.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Name of the priority class.

Returns:

  • (String)


38346
38347
38348
38349
38350
38351
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38346

class PriorityClass < Struct.new(
  :name,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end

#weightInteger

Weight of the priority class. The value is within a range from 0 to 100, where 0 is the default.

A weight of 0 is the lowest priority and 100 is the highest. Weight 0 is the default.

Returns:

  • (Integer)


38346
38347
38348
38349
38350
38351
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38346

class PriorityClass < Struct.new(
  :name,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end