amazonka-timestream-query-2.0: Amazon Timestream Query 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.TimeStreamQuery.Types.ColumnInfo

Description

 
Synopsis

Documentation

data ColumnInfo Source #

Contains the metadata for query results such as the column names, data types, and other attributes.

See: newColumnInfo smart constructor.

Constructors

ColumnInfo' 

Fields

  • name :: Maybe Text

    The name of the result set column. The name of the result set is available for columns of all data types except for arrays.

  • type' :: Type

    The data type of the result set column. The data type can be a scalar or complex. Scalar data types are integers, strings, doubles, Booleans, and others. Complex data types are types such as arrays, rows, and others.

Instances

Instances details
FromJSON ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

Generic ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

Associated Types

type Rep ColumnInfo :: Type -> Type #

Read ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

Show ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

NFData ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

Methods

rnf :: ColumnInfo -> () #

Eq ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

Hashable ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

type Rep ColumnInfo Source # 
Instance details

Defined in Amazonka.TimeStreamQuery.Types.ColumnInfo

type Rep ColumnInfo = D1 ('MetaData "ColumnInfo" "Amazonka.TimeStreamQuery.Types.ColumnInfo" "amazonka-timestream-query-2.0-HD7xx47Lw3eG6c52GyReXL" 'False) (C1 ('MetaCons "ColumnInfo'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Type)))

newColumnInfo Source #

Create a value of ColumnInfo 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:name:ColumnInfo', columnInfo_name - The name of the result set column. The name of the result set is available for columns of all data types except for arrays.

$sel:type':ColumnInfo', columnInfo_type - The data type of the result set column. The data type can be a scalar or complex. Scalar data types are integers, strings, doubles, Booleans, and others. Complex data types are types such as arrays, rows, and others.

columnInfo_name :: Lens' ColumnInfo (Maybe Text) Source #

The name of the result set column. The name of the result set is available for columns of all data types except for arrays.

columnInfo_type :: Lens' ColumnInfo Type Source #

The data type of the result set column. The data type can be a scalar or complex. Scalar data types are integers, strings, doubles, Booleans, and others. Complex data types are types such as arrays, rows, and others.