:doc:`SageMaker <../../sagemaker>` / Client / list_edge_packaging_jobs

************************
list_edge_packaging_jobs
************************



.. py:method:: SageMaker.Client.list_edge_packaging_jobs(**kwargs)

  

  Returns a list of edge packaging jobs.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgePackagingJobs>`_  


  **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'
    )
    
  :type NextToken: string
  :param NextToken: 

    The response from the last list when returning a list large enough to need tokening.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    Maximum number of results to select.

    

  
  :type CreationTimeAfter: datetime
  :param CreationTimeAfter: 

    Select jobs where the job was created after specified time.

    

  
  :type CreationTimeBefore: datetime
  :param CreationTimeBefore: 

    Select jobs where the job was created before specified time.

    

  
  :type LastModifiedTimeAfter: datetime
  :param LastModifiedTimeAfter: 

    Select jobs where the job was updated after specified time.

    

  
  :type LastModifiedTimeBefore: datetime
  :param LastModifiedTimeBefore: 

    Select jobs where the job was updated before specified time.

    

  
  :type NameContains: string
  :param NameContains: 

    Filter for jobs containing this name in their packaging job name.

    

  
  :type ModelNameContains: string
  :param ModelNameContains: 

    Filter for jobs where the model name contains this string.

    

  
  :type StatusEquals: string
  :param StatusEquals: 

    The job status to filter for.

    

  
  :type SortBy: string
  :param SortBy: 

    Use to specify what column to sort by.

    

  
  :type SortOrder: string
  :param SortOrder: 

    What direction to sort by.

    

  
  
  :rtype: 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.

        
  