Lists training jobs.
See https://www.paws-r-sdk.com/docs/sagemaker_list_training_jobs/ for full documentation.
Usage
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
)Arguments
- NextToken
If the result of the previous
list_training_jobsrequest was truncated, the response includes aNextToken. To retrieve the next set of training jobs, use the token in the next request.- MaxResults
The maximum number of training jobs to return in the response.
- CreationTimeAfter
A filter that returns only training jobs created after the specified time (timestamp).
- CreationTimeBefore
A filter that returns only training jobs created before the specified time (timestamp).
- LastModifiedTimeAfter
A filter that returns only training jobs modified after the specified time (timestamp).
- LastModifiedTimeBefore
A filter that returns only training jobs modified before the specified time (timestamp).
- NameContains
A string in the training job name. This filter returns only training jobs whose name contains the specified string.
- StatusEquals
A filter that retrieves only training jobs with a specific status.
- SortBy
The field to sort results by. The default is
CreationTime.- SortOrder
The sort order for results. The default is
Ascending.- WarmPoolStatusEquals
A filter that retrieves only training jobs with a specific warm pool status.
- TrainingPlanArnEquals
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.