:doc:`ApplicationDiscoveryService <../../discovery>` / Client / describe_export_configurations

******************************
describe_export_configurations
******************************



.. py:method:: ApplicationDiscoveryService.Client.describe_export_configurations(**kwargs)

  

  ``DescribeExportConfigurations`` is deprecated. Use `DescribeExportTasks <https://docs.aws.amazon.com/application-discovery/latest/APIReference/API_DescribeExportTasks.html>`__, instead.

  

  .. danger::

        This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.


  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/discovery-2015-11-01/DescribeExportConfigurations>`_  


  **Request Syntax**
  ::

    response = client.describe_export_configurations(
        exportIds=[
            'string',
        ],
        maxResults=123,
        nextToken='string'
    )
    
  :type exportIds: list
  :param exportIds: 

    A list of continuous export IDs to search for.

    

  
    - *(string) --* 

    

  :type maxResults: integer
  :param maxResults: 

    A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.

    

  
  :type nextToken: string
  :param nextToken: 

    The token from the previous call to describe-export-tasks.

    

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

    
    ::

      {
          'exportsInfo': [
              {
                  'exportId': 'string',
                  'exportStatus': 'FAILED'|'SUCCEEDED'|'IN_PROGRESS',
                  'statusMessage': 'string',
                  'configurationsDownloadUrl': 'string',
                  'exportRequestTime': datetime(2015, 1, 1),
                  'isTruncated': True|False,
                  'requestedStartTime': datetime(2015, 1, 1),
                  'requestedEndTime': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **exportsInfo** *(list) --* 
        

        - *(dict) --* 

          Information regarding the export status of discovered data. The value is an array of objects.

          
          

          - **exportId** *(string) --* 

            A unique identifier used to query an export.

            
          

          - **exportStatus** *(string) --* 

            The status of the data export job.

            
          

          - **statusMessage** *(string) --* 

            A status message provided for API callers.

            
          

          - **configurationsDownloadUrl** *(string) --* 

            A URL for an Amazon S3 bucket where you can review the exported data. The URL is displayed only if the export succeeded.

            
          

          - **exportRequestTime** *(datetime) --* 

            The time that the data export was initiated.

            
          

          - **isTruncated** *(boolean) --* 

            If true, the export of agent information exceeded the size limit for a single export and the exported data is incomplete for the requested time range. To address this, select a smaller time range for the export by using ``startDate`` and ``endDate``.

            
          

          - **requestedStartTime** *(datetime) --* 

            The value of ``startTime`` parameter in the ``StartExportTask`` request. If no ``startTime`` was requested, this result does not appear in ``ExportInfo``.

            
          

          - **requestedEndTime** *(datetime) --* 

            The ``endTime`` used in the ``StartExportTask`` request. If no ``endTime`` was requested, this result does not appear in ``ExportInfo``.

            
      
    
      

      - **nextToken** *(string) --* 

        The token from the previous call to describe-export-tasks.

        
  
  **Exceptions**
  
  *   :py:class:`ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException`

  
  *   :py:class:`ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`ApplicationDiscoveryService.Client.exceptions.InvalidParameterException`

  
  *   :py:class:`ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException`

  
  *   :py:class:`ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException`

  
  *   :py:class:`ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException`

  