Module Values.AutomatedReasoningPolicyTestResultSource

Contains the results of testing an Automated Reasoning policy against various scenarios and validation checks.

Sourcetype nonrec t = {
  1. testCase : AutomatedReasoningPolicyTestCase.t option;
    (*

    The test case that was executed, including the input content, expected results, and configuration parameters used during validation.

    *)
  2. policyArn : AutomatedReasoningPolicyArn.t option;
    (*

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

    *)
  3. testRunStatus : AutomatedReasoningPolicyTestRunStatus.t option;
    (*

    The overall status of the test run (e.g., COMPLETED, FAILED, IN_PROGRESS).

    *)
  4. testFindings : AutomatedReasoningCheckFindingList.t option;
    (*

    Detailed findings from the test run, including any issues, violations, or unexpected behaviors discovered.

    *)
  5. testRunResult : AutomatedReasoningPolicyTestRunResult.t option;
    (*

    The overall result of the test run, indicating whether the policy passed or failed validation.

    *)
  6. aggregatedTestFindingsResult : AutomatedReasoningCheckResult.t option;
    (*

    A summary of all test findings, aggregated to provide an overall assessment of policy quality and correctness.

    *)
  7. updatedAt : Timestamp.t option;
    (*

    The timestamp when the test results were last updated.

    *)
}
Sourceval make : ?testCase:??? -> ?policyArn:??? -> ?testRunStatus:??? -> ?testFindings:??? -> ?testRunResult:??? -> ?aggregatedTestFindingsResult:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of AutomatedReasoningCheckTranslationConfidence.t | `List of [> `Structure of (string * [> `String of AutomatedReasoningLogicStatementContent.t ]) list ] list | `String of AutomatedReasoningLogicStatementContent.t ]) list ] list | `String of AutomatedReasoningPolicyDefinitionRuleId.t ]) list ] list | `Structure of (string * [> `Double of AutomatedReasoningCheckTranslationConfidence.t | `Enum of string | `List of [> `Structure of (string * [> `String of AutomatedReasoningLogicStatementContent.t ]) list ] list ]) list ]) list ]) list ] list | `String of AutomatedReasoningPolicyArn.t | `Structure of (string * [> `Double of AutomatedReasoningCheckTranslationConfidence.t | `Enum of string | `String of AutomatedReasoningPolicyTestCaseId.t | `Timestamp of Timestamp.t ]) list | `Timestamp of Timestamp.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