Values.BedrockFoundationModelConfigurationSourceSettings for a foundation model used to parse documents for a data source.
type nonrec t = {modelArn : BedrockModelArn.t;The ARN of the foundation model to use for parsing.
*)parsingPrompt : ParsingPrompt.t option;Instructions for interpreting the contents of a document.
*)parsingModality : ParsingModality.t option;Specifies whether to enable parsing of multimodal data, including both text and/or images.
*)}val make :
?parsingPrompt:??? ->
?parsingModality:??? ->
modelArn:BedrockModelArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of BedrockModelArn.t
| `Structure of (string * [> `String of ParsingPromptText.t ]) list ])
list ]