Module Values.GuardrailStreamConfigurationSource

Configuration information for a guardrail that you use with the ConverseStream action.

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.

    *)
  4. streamProcessingMode : GuardrailStreamProcessingMode.t option;
    (*

    The processing mode. The processing mode. For more information, see Configure streaming response behavior in the Amazon Bedrock User Guide.

    *)
}
Sourceval make : ?guardrailIdentifier:??? -> ?guardrailVersion:??? -> ?trace:??? -> ?streamProcessingMode:??? -> 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