Lists processing jobs that satisfy various filters
Source:R/sagemaker_operations.R
sagemaker_list_processing_jobs.RdLists processing jobs that satisfy various filters.
See https://www.paws-r-sdk.com/docs/sagemaker_list_processing_jobs/ for full documentation.
Usage
sagemaker_list_processing_jobs(
CreationTimeAfter = NULL,
CreationTimeBefore = NULL,
LastModifiedTimeAfter = NULL,
LastModifiedTimeBefore = NULL,
NameContains = NULL,
StatusEquals = NULL,
SortBy = NULL,
SortOrder = NULL,
NextToken = NULL,
MaxResults = NULL
)Arguments
- CreationTimeAfter
A filter that returns only processing jobs created after the specified time.
- CreationTimeBefore
A filter that returns only processing jobs created after the specified time.
- LastModifiedTimeAfter
A filter that returns only processing jobs modified after the specified time.
- LastModifiedTimeBefore
A filter that returns only processing jobs modified before the specified time.
- NameContains
A string in the processing job name. This filter returns only processing jobs whose name contains the specified string.
- StatusEquals
A filter that retrieves only processing 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.- NextToken
If the result of the previous
list_processing_jobsrequest was truncated, the response includes aNextToken. To retrieve the next set of processing jobs, use the token in the next request.- MaxResults
The maximum number of processing jobs to return in the response.