Lists training jobs.
See https://www.paws-r-sdk.com/docs/sagemaker_list_training_jobs/ for full documentation.
sagemaker_list_training_jobs(
NextToken = NULL,
MaxResults = NULL,
CreationTimeAfter = NULL,
CreationTimeBefore = NULL,
LastModifiedTimeAfter = NULL,
LastModifiedTimeBefore = NULL,
NameContains = NULL,
StatusEquals = NULL,
SortBy = NULL,
SortOrder = NULL,
WarmPoolStatusEquals = NULL,
TrainingPlanArnEquals = NULL
)
If the result of the previous
list_training_jobs
request was
truncated, the response includes a NextToken
. To retrieve the next set
of training jobs, use the token in the next request.
The maximum number of training jobs to return in the response.
A filter that returns only training jobs created after the specified time (timestamp).
A filter that returns only training jobs created before the specified time (timestamp).
A filter that returns only training jobs modified after the specified time (timestamp).
A filter that returns only training jobs modified before the specified time (timestamp).
A string in the training job name. This filter returns only training jobs whose name contains the specified string.
A filter that retrieves only training jobs with a specific status.
The field to sort results by. The default is CreationTime
.
The sort order for results. The default is Ascending
.
A filter that retrieves only training jobs with a specific warm pool status.
The Amazon Resource Name (ARN); of the training plan to filter training
jobs by. For more information about reserving GPU capacity for your
SageMaker training jobs using Amazon SageMaker Training Plan, see
create_training_plan
.