:doc:`NovaActService <../../nova-act>` / Paginator / ListWorkflowDefinitions

***********************
ListWorkflowDefinitions
***********************



.. py:class:: NovaActService.Paginator.ListWorkflowDefinitions

  ::

    
    paginator = client.get_paginator('list_workflow_definitions')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`NovaActService.Client.list_workflow_definitions`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          sortOrder='Ascending'|'Descending',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type sortOrder: string
    :param sortOrder: 

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

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :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) --* 

          A token to resume pagination.

          
    