Values.StartAutomatedReasoningPolicyTestWorkflowRequestSourceInitiates a test workflow to validate Automated Reasoning policy tests. The workflow executes the specified tests against the policy and generates validation results.
type nonrec t = {policyArn : AutomatedReasoningPolicyArn.t;The Amazon Resource Name (ARN) of the Automated Reasoning policy to test.
*)buildWorkflowId : AutomatedReasoningPolicyBuildWorkflowId.t;The build workflow identifier. The build workflow must show a COMPLETED status before running tests.
*)testCaseIds : AutomatedReasoningPolicyTestCaseIdList.t option;The list of test identifiers to run. If not provided, all tests for the policy are run.
*)clientRequestToken : IdempotencyToken.t option;A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request but doesn't return an error.
*)}val make :
?testCaseIds:??? ->
?clientRequestToken:??? ->
policyArn:AutomatedReasoningPolicyArn.t ->
buildWorkflowId:AutomatedReasoningPolicyBuildWorkflowId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of AutomatedReasoningPolicyTestCaseId.t ] list
| `String of AutomatedReasoningPolicyArn.t ])
list ]