Lists model compilation jobs that satisfy various filters
Source:R/sagemaker_operations.R
sagemaker_list_compilation_jobs.RdLists model compilation jobs that satisfy various filters.
See https://www.paws-r-sdk.com/docs/sagemaker_list_compilation_jobs/ for full documentation.
Usage
sagemaker_list_compilation_jobs(
NextToken = NULL,
MaxResults = NULL,
CreationTimeAfter = NULL,
CreationTimeBefore = NULL,
LastModifiedTimeAfter = NULL,
LastModifiedTimeBefore = NULL,
NameContains = NULL,
StatusEquals = NULL,
SortBy = NULL,
SortOrder = NULL
)Arguments
- NextToken
If the result of the previous
list_compilation_jobsrequest was truncated, the response includes aNextToken. To retrieve the next set of model compilation jobs, use the token in the next request.- MaxResults
The maximum number of model compilation jobs to return in the response.
- CreationTimeAfter
A filter that returns the model compilation jobs that were created after a specified time.
- CreationTimeBefore
A filter that returns the model compilation jobs that were created before a specified time.
- LastModifiedTimeAfter
A filter that returns the model compilation jobs that were modified after a specified time.
- LastModifiedTimeBefore
A filter that returns the model compilation jobs that were modified before a specified time.
- NameContains
A filter that returns the model compilation jobs whose name contains a specified string.
- StatusEquals
A filter that retrieves model compilation jobs with a specific
CompilationJobStatusstatus.- SortBy
The field by which to sort results. The default is
CreationTime.- SortOrder
The sort order for results. The default is
Ascending.