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)


39737
39738
39739
39740
39741
39742
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 39737

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)


39737
39738
39739
39740
39741
39742
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 39737

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