:doc:`DynamoDB <../../dynamodb>` / Client / list_exports

************
list_exports
************



.. py:method:: DynamoDB.Client.list_exports(**kwargs)

  

  Lists completed exports within the past 90 days.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ListExports>`_  


  **Request Syntax**
  ::

    response = client.list_exports(
        TableArn='string',
        MaxResults=123,
        NextToken='string'
    )
    
  :type TableArn: string
  :param TableArn: 

    The Amazon Resource Name (ARN) associated with the exported table.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    Maximum number of results to return per page.

    

  
  :type NextToken: string
  :param NextToken: 

    An optional string that, if supplied, must be copied from the output of a previous call to ``ListExports``. When provided in this manner, the API fetches the next page of results.

    

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

    
    ::

      {
          'ExportSummaries': [
              {
                  'ExportArn': 'string',
                  'ExportStatus': 'IN_PROGRESS'|'COMPLETED'|'FAILED',
                  'ExportType': 'FULL_EXPORT'|'INCREMENTAL_EXPORT'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ExportSummaries** *(list) --* 

        A list of ``ExportSummary`` objects.

        
        

        - *(dict) --* 

          Summary information about an export task.

          
          

          - **ExportArn** *(string) --* 

            The Amazon Resource Name (ARN) of the export.

            
          

          - **ExportStatus** *(string) --* 

            Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.

            
          

          - **ExportType** *(string) --* 

            The type of export that was performed. Valid values are ``FULL_EXPORT`` or ``INCREMENTAL_EXPORT``.

            
      
    
      

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

        If this value is returned, there are additional results to be displayed. To retrieve them, call ``ListExports`` again, with ``NextToken`` set to this value.

        
  
  **Exceptions**
  
  *   :py:class:`DynamoDB.Client.exceptions.LimitExceededException`

  
  *   :py:class:`DynamoDB.Client.exceptions.InternalServerError`

  