Class: Aws::SageMaker::Types::ResourceLimits

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

Overview

Note:

When making an API call, you may pass ResourceLimits data as a hash:

{
  max_number_of_training_jobs: 1, # required
  max_parallel_training_jobs: 1, # required
}

Specifies the maximum number of training jobs and parallel training jobs that a hyperparameter tuning job can launch.

Instance Attribute Summary collapse

Instance Attribute Details

#max_number_of_training_jobsInteger

The maximum number of training jobs that a hyperparameter tuning job can launch.

Returns:

  • (Integer)


9337
9338
9339
9340
9341
# File 'lib/aws-sdk-sagemaker/types.rb', line 9337

class ResourceLimits < Struct.new(
  :max_number_of_training_jobs,
  :max_parallel_training_jobs)
  include Aws::Structure
end

#max_parallel_training_jobsInteger

The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.

Returns:

  • (Integer)


9337
9338
9339
9340
9341
# File 'lib/aws-sdk-sagemaker/types.rb', line 9337

class ResourceLimits < Struct.new(
  :max_number_of_training_jobs,
  :max_parallel_training_jobs)
  include Aws::Structure
end