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

***********************
ListModelCardExportJobs
***********************



.. py:class:: SageMaker.Paginator.ListModelCardExportJobs

  ::

    
    paginator = client.get_paginator('list_model_card_export_jobs')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ModelCardName='string',
          ModelCardVersion=123,
          CreationTimeAfter=datetime(2015, 1, 1),
          CreationTimeBefore=datetime(2015, 1, 1),
          ModelCardExportJobNameContains='string',
          StatusEquals='InProgress'|'Completed'|'Failed',
          SortBy='Name'|'CreationTime'|'Status',
          SortOrder='Ascending'|'Descending',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ModelCardName: string
    :param ModelCardName: **[REQUIRED]** 

      List export jobs for the model card with the specified name.

      

    
    :type ModelCardVersion: integer
    :param ModelCardVersion: 

      List export jobs for the model card with the specified version.

      

    
    :type CreationTimeAfter: datetime
    :param CreationTimeAfter: 

      Only list model card export jobs that were created after the time specified.

      

    
    :type CreationTimeBefore: datetime
    :param CreationTimeBefore: 

      Only list model card export jobs that were created before the time specified.

      

    
    :type ModelCardExportJobNameContains: string
    :param ModelCardExportJobNameContains: 

      Only list model card export jobs with names that contain the specified string.

      

    
    :type StatusEquals: string
    :param StatusEquals: 

      Only list model card export jobs with the specified status.

      

    
    :type SortBy: string
    :param SortBy: 

      Sort model card export jobs by either name or creation time. Sorts by creation time by default.

      

    
    :type SortOrder: string
    :param SortOrder: 

      Sort model card export jobs by ascending or descending order.

      

    
    :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**

      
      ::

        {
            'ModelCardExportJobSummaries': [
                {
                    'ModelCardExportJobName': 'string',
                    'ModelCardExportJobArn': 'string',
                    'Status': 'InProgress'|'Completed'|'Failed',
                    'ModelCardName': 'string',
                    'ModelCardVersion': 123,
                    'CreatedAt': datetime(2015, 1, 1),
                    'LastModifiedAt': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ModelCardExportJobSummaries** *(list) --* 

          The summaries of the listed model card export jobs.

          
          

          - *(dict) --* 

            The summary of the Amazon SageMaker Model Card export job.

            
            

            - **ModelCardExportJobName** *(string) --* 

              The name of the model card export job.

              
            

            - **ModelCardExportJobArn** *(string) --* 

              The Amazon Resource Name (ARN) of the model card export job.

              
            

            - **Status** *(string) --* 

              The completion status of the model card export job.

              
            

            - **ModelCardName** *(string) --* 

              The name of the model card that the export job exports.

              
            

            - **ModelCardVersion** *(integer) --* 

              The version of the model card that the export job exports.

              
            

            - **CreatedAt** *(datetime) --* 

              The date and time that the model card export job was created.

              
            

            - **LastModifiedAt** *(datetime) --* 

              The date and time that the model card export job was last modified..

              
        
      
    