:doc:`NeptuneGraph <../../neptune-graph>` / Client / list_export_tasks

*****************
list_export_tasks
*****************



.. py:method:: NeptuneGraph.Client.list_export_tasks(**kwargs)

  

  Retrieves a list of export tasks.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/ListExportTasks>`_  


  **Request Syntax**
  ::

    response = client.list_export_tasks(
        graphIdentifier='string',
        nextToken='string',
        maxResults=123
    )
    
  :type graphIdentifier: string
  :param graphIdentifier: 

    The unique identifier of the Neptune Analytics graph.

    

  
  :type nextToken: string
  :param nextToken: 

    Pagination token used to paginate input.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of export tasks to return.

    

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

    
    ::

      {
          'tasks': [
              {
                  'graphId': 'string',
                  'roleArn': 'string',
                  'taskId': 'string',
                  'status': 'INITIALIZING'|'EXPORTING'|'SUCCEEDED'|'FAILED'|'CANCELLING'|'CANCELLED'|'DELETED',
                  'format': 'PARQUET'|'CSV',
                  'destination': 'string',
                  'kmsKeyIdentifier': 'string',
                  'parquetType': 'COLUMNAR',
                  'statusReason': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **tasks** *(list) --* 

        The requested list of export tasks.

        
        

        - *(dict) --* 

          Provides details about an export task.

          
          

          - **graphId** *(string) --* 

            The source graph identifier of the export task.

            
          

          - **roleArn** *(string) --* 

            The ARN of the IAM role that will allow the data to be exported to the destination.

            
          

          - **taskId** *(string) --* 

            The unique identifier of the export task.

            
          

          - **status** *(string) --* 

            The current status of the export task.

            
          

          - **format** *(string) --* 

            The format of the export task.

            
          

          - **destination** *(string) --* 

            The Amazon S3 URI of the export task where data will be exported to.

            
          

          - **kmsKeyIdentifier** *(string) --* 

            The KMS key identifier of the export task.

            
          

          - **parquetType** *(string) --* 

            The parquet type of the export task.

            
          

          - **statusReason** *(string) --* 

            The reason that the export task has this status value.

            
      
    
      

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

        Pagination token used to paginate output.

        
  
  **Exceptions**
  
  *   :py:class:`NeptuneGraph.Client.exceptions.ThrottlingException`

  
  *   :py:class:`NeptuneGraph.Client.exceptions.ValidationException`

  
  *   :py:class:`NeptuneGraph.Client.exceptions.InternalServerException`

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

  