Class: Aws::BedrockAgent::Types::BedrockFoundationModelConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::BedrockAgent::Types::BedrockFoundationModelConfiguration
 
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Settings for a foundation model used to parse documents for a data source.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #model_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN of the foundation model to use for parsing. 
- 
  
    
      #parsing_modality  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies whether to enable parsing of multimodal data, including both text and/or images. 
- 
  
    
      #parsing_prompt  ⇒ Types::ParsingPrompt 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Instructions for interpreting the contents of a document. 
Instance Attribute Details
#model_arn ⇒ String
The ARN of the foundation model to use for parsing.
| 1282 1283 1284 1285 1286 1287 1288 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 1282 class BedrockFoundationModelConfiguration < Struct.new( :model_arn, :parsing_prompt, :parsing_modality) SENSITIVE = [] include Aws::Structure end | 
#parsing_modality ⇒ String
Specifies whether to enable parsing of multimodal data, including both text and/or images.
| 1282 1283 1284 1285 1286 1287 1288 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 1282 class BedrockFoundationModelConfiguration < Struct.new( :model_arn, :parsing_prompt, :parsing_modality) SENSITIVE = [] include Aws::Structure end | 
#parsing_prompt ⇒ Types::ParsingPrompt
Instructions for interpreting the contents of a document.
| 1282 1283 1284 1285 1286 1287 1288 | # File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 1282 class BedrockFoundationModelConfiguration < Struct.new( :model_arn, :parsing_prompt, :parsing_modality) SENSITIVE = [] include Aws::Structure end |