interface QueryGenerationContextProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBase.QueryGenerationContextProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_QueryGenerationContextProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.QueryGenerationContextProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.QueryGenerationContextProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » QueryGenerationContextProperty |
Contains configurations for context to use during query generation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const queryGenerationContextProperty: bedrock.CfnKnowledgeBase.QueryGenerationContextProperty = {
curatedQueries: [{
naturalLanguage: 'naturalLanguage',
sql: 'sql',
}],
tables: [{
name: 'name',
// the properties below are optional
columns: [{
description: 'description',
inclusion: 'inclusion',
name: 'name',
}],
description: 'description',
inclusion: 'inclusion',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| curated | IResolvable | (IResolvable | Curated)[] | An array of objects, each of which defines information about example queries to help the query engine generate appropriate SQL queries. |
| tables? | IResolvable | (IResolvable | Query)[] | An array of objects, each of which defines information about a table in the database. |
curatedQueries?
Type:
IResolvable | (IResolvable | Curated)[]
(optional)
An array of objects, each of which defines information about example queries to help the query engine generate appropriate SQL queries.
tables?
Type:
IResolvable | (IResolvable | Query)[]
(optional)
An array of objects, each of which defines information about a table in the database.

.NET
Go
Java
Python
TypeScript