Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data ColumnStatistics = ColumnStatistics' {}
- newColumnStatistics :: Text -> Text -> UTCTime -> ColumnStatisticsData -> ColumnStatistics
- columnStatistics_columnName :: Lens' ColumnStatistics Text
- columnStatistics_columnType :: Lens' ColumnStatistics Text
- columnStatistics_analyzedTime :: Lens' ColumnStatistics UTCTime
- columnStatistics_statisticsData :: Lens' ColumnStatistics ColumnStatisticsData
Documentation
data ColumnStatistics Source #
Represents the generated column-level statistics for a table or partition.
See: newColumnStatistics
smart constructor.
ColumnStatistics' | |
|
Instances
:: Text | |
-> Text | |
-> UTCTime | |
-> ColumnStatisticsData | |
-> ColumnStatistics |
Create a value of ColumnStatistics
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:columnName:ColumnStatistics'
, columnStatistics_columnName
- Name of column which statistics belong to.
$sel:columnType:ColumnStatistics'
, columnStatistics_columnType
- The data type of the column.
$sel:analyzedTime:ColumnStatistics'
, columnStatistics_analyzedTime
- The timestamp of when column statistics were generated.
$sel:statisticsData:ColumnStatistics'
, columnStatistics_statisticsData
- A ColumnStatisticData
object that contains the statistics data values.
columnStatistics_columnName :: Lens' ColumnStatistics Text Source #
Name of column which statistics belong to.
columnStatistics_columnType :: Lens' ColumnStatistics Text Source #
The data type of the column.
columnStatistics_analyzedTime :: Lens' ColumnStatistics UTCTime Source #
The timestamp of when column statistics were generated.
columnStatistics_statisticsData :: Lens' ColumnStatistics ColumnStatisticsData Source #
A ColumnStatisticData
object that contains the statistics data values.