Module Values.GuardrailConfigurationSource

Configuration information for a guardrail that you use with the Converse operation.

Sourcetype nonrec t = {
  1. guardrailIdentifier : GuardrailIdentifier.t option;
    (*

    The identifier for the guardrail.

    *)
  2. guardrailVersion : GuardrailVersion.t option;
    (*

    The version of the guardrail.

    *)
  3. trace : GuardrailTrace.t option;
    (*

    The trace behavior for the guardrail.

    *)
}
Sourceval make : ?guardrailIdentifier:??? -> ?guardrailVersion:??? -> ?trace:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GuardrailIdentifier.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