Class: Aws::BedrockAgent::Types::SqlKnowledgeBaseConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::SqlKnowledgeBaseConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Contains configurations for a knowledge base connected to an SQL database. Specify the SQL database type in the ‘type` field and include the corresponding field. 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 =
[]
Instance Attribute Summary collapse
-
#redshift_configuration ⇒ Types::RedshiftConfiguration
Specifies configurations for a knowledge base connected to an Amazon Redshift database.
-
#type ⇒ String
The type of SQL database to connect to the knowledge base.
Instance Attribute Details
#redshift_configuration ⇒ Types::RedshiftConfiguration
Specifies configurations for a knowledge base connected to an Amazon Redshift database.
9791 9792 9793 9794 9795 9796 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 9791 class SqlKnowledgeBaseConfiguration < Struct.new( :type, :redshift_configuration) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of SQL database to connect to the knowledge base.
9791 9792 9793 9794 9795 9796 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 9791 class SqlKnowledgeBaseConfiguration < Struct.new( :type, :redshift_configuration) SENSITIVE = [] include Aws::Structure end |