Get Automated Reasoning Policy Build Workflow
| bedrock_get_automated_reasoning_policy_build_workflow | R Documentation |
Retrieves detailed information about an Automated Reasoning policy build workflow, including its status, configuration, and metadata¶
Description¶
Retrieves detailed information about an Automated Reasoning policy build workflow, including its status, configuration, and metadata.
Usage¶
bedrock_get_automated_reasoning_policy_build_workflow(policyArn,
buildWorkflowId)
Arguments¶
policyArn |
[required] The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflow you want to retrieve. |
buildWorkflowId |
[required] The unique identifier of the build workflow to retrieve. |
Value¶
A list with the following syntax:
list(
policyArn = "string",
buildWorkflowId = "string",
status = "SCHEDULED"|"CANCEL_REQUESTED"|"PREPROCESSING"|"BUILDING"|"TESTING"|"COMPLETED"|"FAILED"|"CANCELLED",
buildWorkflowType = "INGEST_CONTENT"|"REFINE_POLICY"|"IMPORT_POLICY"|"GENERATE_FIDELITY_REPORT"|"GENERATE_POLICY_SCENARIOS",
documentName = "string",
documentContentType = "pdf"|"txt",
documentDescription = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$get_automated_reasoning_policy_build_workflow(
policyArn = "string",
buildWorkflowId = "string"
)