List Processing Jobs
sagemaker_list_processing_jobs | R Documentation |
Lists processing jobs that satisfy various filters¶
Description¶
Lists processing jobs that satisfy various filters.
Usage¶
sagemaker_list_processing_jobs(CreationTimeAfter, CreationTimeBefore,
LastModifiedTimeAfter, LastModifiedTimeBefore, NameContains,
StatusEquals, SortBy, SortOrder, NextToken, MaxResults)
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_jobs
request 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.
Value¶
A list with the following syntax:
list(
ProcessingJobSummaries = list(
list(
ProcessingJobName = "string",
ProcessingJobArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
ProcessingEndTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
ProcessingJobStatus = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped",
FailureReason = "string",
ExitMessage = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_processing_jobs(
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
NameContains = "string",
StatusEquals = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped",
SortBy = "Name"|"CreationTime"|"Status",
SortOrder = "Ascending"|"Descending",
NextToken = "string",
MaxResults = 123
)