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

***************************
list_model_card_export_jobs
***************************



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

  

  List the export jobs for the Amazon SageMaker Model Card.

  

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


  **Request Syntax**
  ::

    response = client.list_model_card_export_jobs(
        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',
        NextToken='string',
        MaxResults=123
    )
    
  :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 NextToken: string
  :param NextToken: 

    If the response to a previous ``ListModelCardExportJobs`` request was truncated, the response includes a ``NextToken``. To retrieve the next set of model card export jobs, use the token in the next request.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of model card export jobs to list.

    

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

            
      
    
      

      - **NextToken** *(string) --* 

        If the response is truncated, SageMaker returns this token. To retrieve the next set of model card export jobs, use it in the subsequent request.

        
  