list_edge_packaging_jobs
(**kwargs)¶Returns a list of edge packaging jobs.
See also: AWS API Documentation
Request Syntax
response = client.list_edge_packaging_jobs(
NextToken='string',
MaxResults=123,
CreationTimeAfter=datetime(2015, 1, 1),
CreationTimeBefore=datetime(2015, 1, 1),
LastModifiedTimeAfter=datetime(2015, 1, 1),
LastModifiedTimeBefore=datetime(2015, 1, 1),
NameContains='string',
ModelNameContains='string',
StatusEquals='STARTING'|'INPROGRESS'|'COMPLETED'|'FAILED'|'STOPPING'|'STOPPED',
SortBy='NAME'|'MODEL_NAME'|'CREATION_TIME'|'LAST_MODIFIED_TIME'|'STATUS',
SortOrder='Ascending'|'Descending'
)
dict
Response Syntax
{
'EdgePackagingJobSummaries': [
{
'EdgePackagingJobArn': 'string',
'EdgePackagingJobName': 'string',
'EdgePackagingJobStatus': 'STARTING'|'INPROGRESS'|'COMPLETED'|'FAILED'|'STOPPING'|'STOPPED',
'CompilationJobName': 'string',
'ModelName': 'string',
'ModelVersion': 'string',
'CreationTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
EdgePackagingJobSummaries (list) --
Summaries of edge packaging jobs.
(dict) --
Summary of edge packaging job.
EdgePackagingJobArn (string) --
The Amazon Resource Name (ARN) of the edge packaging job.
EdgePackagingJobName (string) --
The name of the edge packaging job.
EdgePackagingJobStatus (string) --
The status of the edge packaging job.
CompilationJobName (string) --
The name of the SageMaker Neo compilation job.
ModelName (string) --
The name of the model.
ModelVersion (string) --
The version of the model.
CreationTime (datetime) --
The timestamp of when the job was created.
LastModifiedTime (datetime) --
The timestamp of when the edge packaging job was last updated.
NextToken (string) --
Token to use when calling the next page of results.