Class: Aws::SageMaker::Types::PriorityClass
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::PriorityClass
- 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
-
#name ⇒ String
Name of the priority class.
-
#weight ⇒ Integer
Weight of the priority class.
Instance Attribute Details
#name ⇒ String
Name of the priority class.
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 |
#weight ⇒ Integer
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.
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 |