:doc:`NovaActService <../../nova-act>` / Client / list_workflow_runs

******************
list_workflow_runs
******************



.. py:method:: NovaActService.Client.list_workflow_runs(**kwargs)

  

  Lists all workflow runs for a specific workflow definition with optional filtering and pagination.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListWorkflowRuns>`_  


  **Request Syntax**
  ::

    response = client.list_workflow_runs(
        workflowDefinitionName='string',
        maxResults=123,
        nextToken='string',
        sortOrder='Ascending'|'Descending'
    )
    
  :type workflowDefinitionName: string
  :param workflowDefinitionName: **[REQUIRED]** 

    The name of the workflow definition to list workflow runs for.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of workflow runs to return in a single response.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for retrieving the next page of results.

    

  
  :type sortOrder: string
  :param sortOrder: 

    The sort order for the returned workflow runs (ascending or descending).

    

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

    
    ::

      {
          'workflowRunSummaries': [
              {
                  'workflowRunArn': 'string',
                  'workflowRunId': 'string',
                  'status': 'RUNNING'|'SUCCEEDED'|'FAILED'|'TIMED_OUT'|'DELETING',
                  'startedAt': datetime(2015, 1, 1),
                  'endedAt': datetime(2015, 1, 1),
                  'traceLocation': {
                      'locationType': 'S3',
                      'location': 'string'
                  }
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **workflowRunSummaries** *(list) --* 

        A list of summary information for workflow runs.

        
        

        - *(dict) --* 

          Summary information about a workflow run, including execution status and timing.

          
          

          - **workflowRunArn** *(string) --* 

            The Amazon Resource Name (ARN) of the workflow run.

            
          

          - **workflowRunId** *(string) --* 

            The unique identifier of the workflow run.

            
          

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

            The current execution status of the workflow run.

            
          

          - **startedAt** *(datetime) --* 

            The timestamp when the workflow run started execution.

            
          

          - **endedAt** *(datetime) --* 

            The timestamp when the workflow run completed execution, if applicable.

            
          

          - **traceLocation** *(dict) --* 

            The location where trace information for this workflow run is stored.

            
            

            - **locationType** *(string) --* 

              The type of storage location for the trace data.

              
            

            - **location** *(string) --* 

              The specific location where the trace data is stored.

              
        
      
    
      

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

        The token for retrieving the next page of results, if available.

        
  
  **Exceptions**
  
  *   :py:class:`NovaActService.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`NovaActService.Client.exceptions.ConflictException`

  
  *   :py:class:`NovaActService.Client.exceptions.ThrottlingException`

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

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

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

  