Module Values.StartAutomatedReasoningPolicyTestWorkflowRequestSource

Initiates a test workflow to validate Automated Reasoning policy tests. The workflow executes the specified tests against the policy and generates validation results.

Sourcetype nonrec t = {
  1. policyArn : AutomatedReasoningPolicyArn.t;
    (*

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

    *)
  2. buildWorkflowId : AutomatedReasoningPolicyBuildWorkflowId.t;
    (*

    The build workflow identifier. The build workflow must show a COMPLETED status before running tests.

    *)
  3. testCaseIds : AutomatedReasoningPolicyTestCaseIdList.t option;
    (*

    The list of test identifiers to run. If not provided, all tests for the policy are run.

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?testCaseIds:??? -> ?clientRequestToken:??? -> policyArn:AutomatedReasoningPolicyArn.t -> buildWorkflowId:AutomatedReasoningPolicyBuildWorkflowId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AutomatedReasoningPolicyTestCaseId.t ] list | `String of AutomatedReasoningPolicyArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t