You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ListTrainingJobsForHyperParameterTuningJobRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListTrainingJobsForHyperParameterTuningJobRequest
- Defined in:
- (unknown)
Overview
When passing ListTrainingJobsForHyperParameterTuningJobRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
hyper_parameter_tuning_job_name: "HyperParameterTuningJobName", # required
next_token: "NextToken",
max_results: 1,
status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped
sort_by: "Name", # accepts Name, CreationTime, Status, FinalObjectiveMetricValue
sort_order: "Ascending", # accepts Ascending, Descending
}
Instance Attribute Summary collapse
-
#hyper_parameter_tuning_job_name ⇒ String
The name of the tuning job whose training jobs you want to list.
-
#max_results ⇒ Integer
The maximum number of training jobs to return.
-
#next_token ⇒ String
If the result of the previous
ListTrainingJobsForHyperParameterTuningJob
request was truncated, the response includes aNextToken
. -
#sort_by ⇒ String
The field to sort results by.
-
#sort_order ⇒ String
The sort order for results.
-
#status_equals ⇒ String
A filter that returns only training jobs with the specified status.
Instance Attribute Details
#hyper_parameter_tuning_job_name ⇒ String
The name of the tuning job whose training jobs you want to list.
#max_results ⇒ Integer
The maximum number of training jobs to return. The default value is 10.
#next_token ⇒ String
If the result of the previous
ListTrainingJobsForHyperParameterTuningJob
request was truncated, the
response includes a NextToken
. To retrieve the next set of training
jobs, use the token in the next request.
#sort_by ⇒ String
The field to sort results by. The default is Name
.
If the value of this field is FinalObjectiveMetricValue
, any training
jobs that did not return an objective metric are not listed.
Possible values:
- Name
- CreationTime
- Status
- FinalObjectiveMetricValue
#sort_order ⇒ String
The sort order for results. The default is Ascending
.
Possible values:
- Ascending
- Descending
#status_equals ⇒ String
A filter that returns only training jobs with the specified status.
Possible values:
- InProgress
- Completed
- Failed
- Stopping
- Stopped