amazonka-athena-2.0: Amazon Athena 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.Athena.Types.QueryRuntimeStatisticsRows

Description

 
Synopsis

Documentation

data QueryRuntimeStatisticsRows Source #

Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.

See: newQueryRuntimeStatisticsRows smart constructor.

Constructors

QueryRuntimeStatisticsRows' 

Fields

Instances

Instances details
FromJSON QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

Generic QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

Associated Types

type Rep QueryRuntimeStatisticsRows :: Type -> Type #

Read QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

Show QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

NFData QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

Eq QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

Hashable QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

type Rep QueryRuntimeStatisticsRows Source # 
Instance details

Defined in Amazonka.Athena.Types.QueryRuntimeStatisticsRows

type Rep QueryRuntimeStatisticsRows = D1 ('MetaData "QueryRuntimeStatisticsRows" "Amazonka.Athena.Types.QueryRuntimeStatisticsRows" "amazonka-athena-2.0-1BJA3HTvHJNEzwQRaEw59w" 'False) (C1 ('MetaCons "QueryRuntimeStatisticsRows'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "inputBytes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "inputRows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))) :*: (S1 ('MetaSel ('Just "outputBytes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "outputRows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)))))

newQueryRuntimeStatisticsRows :: QueryRuntimeStatisticsRows Source #

Create a value of QueryRuntimeStatisticsRows 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:inputBytes:QueryRuntimeStatisticsRows', queryRuntimeStatisticsRows_inputBytes - The number of bytes read to execute the query.

$sel:inputRows:QueryRuntimeStatisticsRows', queryRuntimeStatisticsRows_inputRows - The number of rows read to execute the query.

$sel:outputBytes:QueryRuntimeStatisticsRows', queryRuntimeStatisticsRows_outputBytes - The number of bytes returned by the query.

$sel:outputRows:QueryRuntimeStatisticsRows', queryRuntimeStatisticsRows_outputRows - The number of rows returned by the query.