Skip to content

Bedrock  >  Operations  >  get_automated_reasoning_policy_build_workflow

get_automated_reasoning_policy_build_workflow

Operation

get_automated_reasoning_policy_build_workflow async

get_automated_reasoning_policy_build_workflow(input: GetAutomatedReasoningPolicyBuildWorkflowInput, plugins: list[Plugin] | None = None) -> GetAutomatedReasoningPolicyBuildWorkflowOutput

Retrieves detailed information about an Automated Reasoning policy build workflow, including its status, configuration, and metadata.

Parameters:

Name Type Description Default
input GetAutomatedReasoningPolicyBuildWorkflowInput

An instance of GetAutomatedReasoningPolicyBuildWorkflowInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
GetAutomatedReasoningPolicyBuildWorkflowOutput

An instance of GetAutomatedReasoningPolicyBuildWorkflowOutput.

Input

GetAutomatedReasoningPolicyBuildWorkflowInput dataclass

Dataclass for GetAutomatedReasoningPolicyBuildWorkflowInput structure.

Attributes

build_workflow_id class-attribute instance-attribute
build_workflow_id: str | None = None

The unique identifier of the build workflow to retrieve.

policy_arn class-attribute instance-attribute
policy_arn: str | None = None

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

Output

GetAutomatedReasoningPolicyBuildWorkflowOutput dataclass

Dataclass for GetAutomatedReasoningPolicyBuildWorkflowOutput structure.

Attributes

build_workflow_id instance-attribute
build_workflow_id: str

The unique identifier of the build workflow.

build_workflow_type instance-attribute

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

created_at instance-attribute
created_at: datetime

The timestamp when the build workflow was created.

document_content_type class-attribute instance-attribute
document_content_type: AutomatedReasoningPolicyBuildDocumentContentType | None = None

The content type of the source document (e.g., text/plain, application/pdf).

document_description class-attribute instance-attribute
document_description: str | None = field(repr=False, default=None)

A detailed description of the document's content and how it should be used in the policy generation process.

document_name class-attribute instance-attribute
document_name: str | None = field(repr=False, default=None)

The name of the source document used in the build workflow.

policy_arn instance-attribute
policy_arn: str

The Amazon Resource Name (ARN) of the Automated Reasoning policy.

status instance-attribute

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

updated_at instance-attribute
updated_at: datetime

The timestamp when the build workflow was last updated.