list_edge_packaging_jobs

SageMaker.Client.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'
)
Parameters
  • NextToken (string) -- The response from the last list when returning a list large enough to need tokening.
  • MaxResults (integer) -- Maximum number of results to select.
  • CreationTimeAfter (datetime) -- Select jobs where the job was created after specified time.
  • CreationTimeBefore (datetime) -- Select jobs where the job was created before specified time.
  • LastModifiedTimeAfter (datetime) -- Select jobs where the job was updated after specified time.
  • LastModifiedTimeBefore (datetime) -- Select jobs where the job was updated before specified time.
  • NameContains (string) -- Filter for jobs containing this name in their packaging job name.
  • ModelNameContains (string) -- Filter for jobs where the model name contains this string.
  • StatusEquals (string) -- The job status to filter for.
  • SortBy (string) -- Use to specify what column to sort by.
  • SortOrder (string) -- What direction to sort by.
Return type

dict

Returns

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.