amazonka-kendra-2.0: Amazon KendraFrontendService SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Kendra.Types.TableExcerpt

Description

 
Synopsis

Documentation

data TableExcerpt Source #

An excerpt from a table within a document. The table excerpt displays up to five columns and three rows, depending on how many table cells are relevant to the query and how many columns are available in the original table. The top most relevant cell is displayed in the table excerpt, along with the next most relevant cells.

See: newTableExcerpt smart constructor.

Constructors

TableExcerpt' 

Fields

Instances

Instances details
FromJSON TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

Generic TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

Associated Types

type Rep TableExcerpt :: Type -> Type #

Read TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

Show TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

NFData TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

Methods

rnf :: TableExcerpt -> () #

Eq TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

Hashable TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

type Rep TableExcerpt Source # 
Instance details

Defined in Amazonka.Kendra.Types.TableExcerpt

type Rep TableExcerpt = D1 ('MetaData "TableExcerpt" "Amazonka.Kendra.Types.TableExcerpt" "amazonka-kendra-2.0-IHloXAWlYIS8YTp1gXe6J" 'False) (C1 ('MetaCons "TableExcerpt'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [TableRow])) :*: S1 ('MetaSel ('Just "totalNumberOfRows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))

newTableExcerpt :: TableExcerpt Source #

Create a value of TableExcerpt with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rows:TableExcerpt', tableExcerpt_rows - A list of rows in the table excerpt.

$sel:totalNumberOfRows:TableExcerpt', tableExcerpt_totalNumberOfRows - A count of the number of rows in the original table within the document.

tableExcerpt_rows :: Lens' TableExcerpt (Maybe [TableRow]) Source #

A list of rows in the table excerpt.

tableExcerpt_totalNumberOfRows :: Lens' TableExcerpt (Maybe Int) Source #

A count of the number of rows in the original table within the document.