Class: Aws::BedrockAgent::Types::QueryGenerationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::QueryGenerationConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Contains configurations for query generation. For more information, see [Build a knowledge base by connecting to a structured data source] in the Amazon Bedrock User Guide..
[1]: docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-build-structured.html
Constant Summary collapse
- SENSITIVE =
[:generation_context]
Instance Attribute Summary collapse
-
#execution_timeout_seconds ⇒ Integer
The time after which query generation will time out.
-
#generation_context ⇒ Types::QueryGenerationContext
Specifies configurations for context to use during query generation.
Instance Attribute Details
#execution_timeout_seconds ⇒ Integer
The time after which query generation will time out.
8853 8854 8855 8856 8857 8858 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 8853 class QueryGenerationConfiguration < Struct.new( :execution_timeout_seconds, :generation_context) SENSITIVE = [:generation_context] include Aws::Structure end |
#generation_context ⇒ Types::QueryGenerationContext
Specifies configurations for context to use during query generation.
8853 8854 8855 8856 8857 8858 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 8853 class QueryGenerationConfiguration < Struct.new( :execution_timeout_seconds, :generation_context) SENSITIVE = [:generation_context] include Aws::Structure end |