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

******************************
describe_model_card_export_job
******************************



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

  

  Describes an Amazon SageMaker Model Card export job.

  

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


  **Request Syntax**
  ::

    response = client.describe_model_card_export_job(
        ModelCardExportJobArn='string'
    )
    
  :type ModelCardExportJobArn: string
  :param ModelCardExportJobArn: **[REQUIRED]** 

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

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'ModelCardExportJobName': 'string',
          'ModelCardExportJobArn': 'string',
          'Status': 'InProgress'|'Completed'|'Failed',
          'ModelCardName': 'string',
          'ModelCardVersion': 123,
          'OutputConfig': {
              'S3OutputPath': 'string'
          },
          'CreatedAt': datetime(2015, 1, 1),
          'LastModifiedAt': datetime(2015, 1, 1),
          'FailureReason': 'string',
          'ExportArtifacts': {
              'S3ExportArtifacts': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The name of the model card export job to describe.

        
      

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

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

        
      

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

        The completion status of the model card export job.

         

        
        * ``InProgress``: The model card export job is in progress.
         
        * ``Completed``: The model card export job is complete.
         
        * ``Failed``: The model card export job failed. To see the reason for the failure, see the ``FailureReason`` field in the response to a ``DescribeModelCardExportJob`` call.
        

        
      

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

        The name or Amazon Resource Name (ARN) of the model card that the model export job exports.

        
      

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

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

        
      

      - **OutputConfig** *(dict) --* 

        The export output details for the model card.

        
        

        - **S3OutputPath** *(string) --* 

          The Amazon S3 output path to export your model card PDF.

          
    
      

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

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

        
      

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

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

        
      

      - **FailureReason** *(string) --* 

        The failure reason if the model export job fails.

        
      

      - **ExportArtifacts** *(dict) --* 

        The exported model card artifacts.

        
        

        - **S3ExportArtifacts** *(string) --* 

          The Amazon S3 URI of the exported model artifacts.

          
    
  
  **Exceptions**
  
  *   :py:class:`SageMaker.Client.exceptions.ResourceNotFound`

  