Class: Aws::BedrockAgent::Types::BedrockFoundationModelConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrockagent/types.rb

Overview

Settings for a foundation model or [inference profile] used to parse documents for a data source.

[1]: docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#model_arnString

The ARN of the foundation model or [inference profile].

[1]: docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html

Returns:

  • (String)


990
991
992
993
994
995
# File 'lib/aws-sdk-bedrockagent/types.rb', line 990

class BedrockFoundationModelConfiguration < Struct.new(
  :model_arn,
  :parsing_prompt)
  SENSITIVE = []
  include Aws::Structure
end

#parsing_promptTypes::ParsingPrompt

Instructions for interpreting the contents of a document.



990
991
992
993
994
995
# File 'lib/aws-sdk-bedrockagent/types.rb', line 990

class BedrockFoundationModelConfiguration < Struct.new(
  :model_arn,
  :parsing_prompt)
  SENSITIVE = []
  include Aws::Structure
end