Module Values.GuardrailAutomatedReasoningPolicySource

Represents the configuration of Automated Reasoning policies within a Amazon Bedrock Guardrail, including the policies to apply and confidence thresholds.

Sourcetype nonrec t = {
  1. policies : GuardrailAutomatedReasoningPolicyPoliciesList.t option;
    (*

    The list of Automated Reasoning policy ARNs that should be applied as part of this guardrail configuration.

    *)
  2. confidenceThreshold : AutomatedReasoningConfidenceFilterThreshold.t option;
    (*

    The minimum confidence level required for Automated Reasoning policy violations to trigger guardrail actions. Values range from 0.0 to 1.0.

    *)
}
Sourceval make : ?policies:??? -> ?confidenceThreshold:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of AutomatedReasoningConfidenceFilterThreshold.t | `List of [> `String of AutomatedReasoningPolicyArn.t ] list ]) 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