Module Values.BedrockFoundationModelConfigurationForParsingSource

Settings for a foundation model used to parse documents for a data source.

Sourcetype nonrec t = {
  1. modelArn : BedrockModelArnForParsing.t;
    (*

    The ARN of the foundation model.

    *)
  2. parsingPrompt : ParsingPrompt.t option;
    (*

    Instructions for interpreting the contents of a document.

    *)
}
Sourceval context_ : string
Sourceval make : ?parsingPrompt:??? -> modelArn:BedrockModelArnForParsing.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BedrockModelArnForParsing.t | `Structure of (string * [> `String of ParsingPromptText.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