Skip to content

Bedrock Agent  >  Structures  >  QueryGenerationColumn

QueryGenerationColumn

Structure Class

QueryGenerationColumn dataclass

Contains information about a column in the current table for the query engine to consider.

Attributes

description class-attribute instance-attribute
description: str | None = None

A description of the column that helps the query engine understand the contents of the column.

inclusion class-attribute instance-attribute
inclusion: IncludeExclude | None = None

Specifies whether to include or exclude the column during query generation. If you specify EXCLUDE, the column will be ignored. If you specify INCLUDE, all other columns in the table will be ignored.

name class-attribute instance-attribute
name: str | None = None

The name of the column for which the other fields in this object apply.