:doc:`SageMaker <../../sagemaker>` / Paginator / ListEdgePackagingJobs

*********************
ListEdgePackagingJobs
*********************



.. py:class:: SageMaker.Paginator.ListEdgePackagingJobs

  ::

    
    paginator = client.get_paginator('list_edge_packaging_jobs')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`SageMaker.Client.list_edge_packaging_jobs`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          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',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :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.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :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)
                },
            ],
            
        }
        
      **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.

              
        
      
    