Class: Aws::BedrockAgent::Types::CuratedQuery
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::CuratedQuery
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Contains configurations for a query, each of which defines information about example queries to help the query engine generate appropriate SQL queries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#natural_language ⇒ String
An example natural language query.
-
#sql ⇒ String
The SQL equivalent of the natural language query.
Instance Attribute Details
#natural_language ⇒ String
An example natural language query.
2724 2725 2726 2727 2728 2729 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2724 class CuratedQuery < Struct.new( :natural_language, :sql) SENSITIVE = [] include Aws::Structure end |
#sql ⇒ String
The SQL equivalent of the natural language query.
2724 2725 2726 2727 2728 2729 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2724 class CuratedQuery < Struct.new( :natural_language, :sql) SENSITIVE = [] include Aws::Structure end |