list_processing_jobs(**kwargs)¶Lists processing jobs that satisfy various filters.
See also: AWS API Documentation
Request Syntax
response = client.list_processing_jobs(
    CreationTimeAfter=datetime(2015, 1, 1),
    CreationTimeBefore=datetime(2015, 1, 1),
    LastModifiedTimeAfter=datetime(2015, 1, 1),
    LastModifiedTimeBefore=datetime(2015, 1, 1),
    NameContains='string',
    StatusEquals='InProgress'|'Completed'|'Failed'|'Stopping'|'Stopped',
    SortBy='Name'|'CreationTime'|'Status',
    SortOrder='Ascending'|'Descending',
    NextToken='string',
    MaxResults=123
)
CreationTime .Ascending .ListProcessingJobs request was truncated, the response includes a NextToken . To retrieve the next set of processing jobs, use the token in the next request.dict
Response Syntax
{
    'ProcessingJobSummaries': [
        {
            'ProcessingJobName': 'string',
            'ProcessingJobArn': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'ProcessingEndTime': datetime(2015, 1, 1),
            'LastModifiedTime': datetime(2015, 1, 1),
            'ProcessingJobStatus': 'InProgress'|'Completed'|'Failed'|'Stopping'|'Stopped',
            'FailureReason': 'string',
            'ExitMessage': 'string'
        },
    ],
    'NextToken': 'string'
}
Response Structure
(dict) --
ProcessingJobSummaries (list) --
An array of ProcessingJobSummary objects, each listing a processing job.
(dict) --
Summary of information about a processing job.
ProcessingJobName (string) --
The name of the processing job.
ProcessingJobArn (string) --
The Amazon Resource Name (ARN) of the processing job..
CreationTime (datetime) --
The time at which the processing job was created.
ProcessingEndTime (datetime) --
The time at which the processing job completed.
LastModifiedTime (datetime) --
A timestamp that indicates the last time the processing job was modified.
ProcessingJobStatus (string) --
The status of the processing job.
FailureReason (string) --
A string, up to one KB in size, that contains the reason a processing job failed, if it failed.
ExitMessage (string) --
An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits.
NextToken (string) --
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of processing jobs, use it in the subsequent request.