interface QueryGenerationTableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBasePropsMixin.QueryGenerationTableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBasePropsMixin_QueryGenerationTableProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBasePropsMixin.QueryGenerationTableProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBasePropsMixin.QueryGenerationTableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnKnowledgeBasePropsMixin » QueryGenerationTableProperty |
Contains information about a table for the query engine to consider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const queryGenerationTableProperty: bedrock_mixins.CfnKnowledgeBasePropsMixin.QueryGenerationTableProperty = {
columns: [{
description: 'description',
inclusion: 'inclusion',
name: 'name',
}],
description: 'description',
inclusion: 'inclusion',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| columns? | IResolvable | (IResolvable | Query)[] | An array of objects, each of which defines information about a column in the table. |
| description? | string | A description of the table that helps the query engine understand the contents of the table. |
| inclusion? | string | Specifies whether to include or exclude the table during query generation. |
| name? | string | The name of the table for which the other fields in this object apply. |
columns?
Type:
IResolvable | (IResolvable | Query)[]
(optional)
An array of objects, each of which defines information about a column in the table.
description?
Type:
string
(optional)
A description of the table that helps the query engine understand the contents of the table.
inclusion?
Type:
string
(optional)
Specifies whether to include or exclude the table during query generation.
If you specify EXCLUDE , the table will be ignored. If you specify INCLUDE , all other tables will be ignored.
name?
Type:
string
(optional)
The name of the table for which the other fields in this object apply.

.NET
Go
Java
Python
TypeScript