:doc:`Bedrock <../../bedrock>` / Paginator / ListAutomatedReasoningPolicyBuildWorkflows

******************************************
ListAutomatedReasoningPolicyBuildWorkflows
******************************************



.. py:class:: Bedrock.Paginator.ListAutomatedReasoningPolicyBuildWorkflows

  ::

    
    paginator = client.get_paginator('list_automated_reasoning_policy_build_workflows')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Bedrock.Client.list_automated_reasoning_policy_build_workflows`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-2023-04-20/ListAutomatedReasoningPolicyBuildWorkflows>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          policyArn='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type policyArn: string
    :param policyArn: **[REQUIRED]** 

      The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflows you want to list.

      

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

      
      ::

        {
            'automatedReasoningPolicyBuildWorkflowSummaries': [
                {
                    'policyArn': 'string',
                    'buildWorkflowId': 'string',
                    'status': 'SCHEDULED'|'CANCEL_REQUESTED'|'PREPROCESSING'|'BUILDING'|'TESTING'|'COMPLETED'|'FAILED'|'CANCELLED',
                    'buildWorkflowType': 'INGEST_CONTENT'|'REFINE_POLICY'|'IMPORT_POLICY',
                    'createdAt': datetime(2015, 1, 1),
                    'updatedAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **automatedReasoningPolicyBuildWorkflowSummaries** *(list) --* 

          A list of build workflow summaries, each containing key information about a build workflow including its status and timestamps.

          
          

          - *(dict) --* 

            Provides a summary of a policy build workflow, including its current status, timing information, and key identifiers.

            
            

            - **policyArn** *(string) --* 

              The Amazon Resource Name (ARN) of the Automated Reasoning policy associated with this build workflow.

              
            

            - **buildWorkflowId** *(string) --* 

              The unique identifier of the build workflow.

              
            

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

              The current status of the build workflow (e.g., RUNNING, COMPLETED, FAILED, CANCELLED).

              
            

            - **buildWorkflowType** *(string) --* 

              The type of build workflow (e.g., DOCUMENT_INGESTION, POLICY_REPAIR).

              
            

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

              The timestamp when the build workflow was created.

              
            

            - **updatedAt** *(datetime) --* 

              The timestamp when the build workflow was last updated.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    