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

*************************
list_workflow_definitions
*************************



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

  

  Lists all workflow definitions in your account with optional filtering and pagination.

  

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


  **Request Syntax**
  ::

    response = client.list_workflow_definitions(
        maxResults=123,
        nextToken='string',
        sortOrder='Ascending'|'Descending'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of workflow definitions 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 definitions (ascending or descending).

    

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

    
    ::

      {
          'workflowDefinitionSummaries': [
              {
                  'workflowDefinitionArn': 'string',
                  'workflowDefinitionName': 'string',
                  'createdAt': datetime(2015, 1, 1),
                  'status': 'ACTIVE'|'DELETING'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **workflowDefinitionSummaries** *(list) --* 

        A list of summary information for workflow definitions.

        
        

        - *(dict) --* 

          Summary information about a workflow definition, used in list operations.

          
          

          - **workflowDefinitionArn** *(string) --* 

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

            
          

          - **workflowDefinitionName** *(string) --* 

            The name of the workflow definition.

            
          

          - **createdAt** *(datetime) --* 

            The timestamp when the workflow definition was created.

            
          

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

            The current status of the workflow definition.

            
      
    
      

      - **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.ThrottlingException`

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

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

  