Bedrock / Paginator / ListAutomatedReasoningPolicyBuildWorkflows
ListAutomatedReasoningPolicyBuildWorkflows¶
- class Bedrock.Paginator.ListAutomatedReasoningPolicyBuildWorkflows¶
paginator = client.get_paginator('list_automated_reasoning_policy_build_workflows')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
Bedrock.Client.list_automated_reasoning_policy_build_workflows()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( policyArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
policyArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflows you want to list.
PaginationConfig (dict) –
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.
- Return type:
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.