| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Glue.Types.BinaryColumnStatisticsData
Description
Synopsis
- data BinaryColumnStatisticsData = BinaryColumnStatisticsData' {}
- newBinaryColumnStatisticsData :: Natural -> Double -> Natural -> BinaryColumnStatisticsData
- binaryColumnStatisticsData_maximumLength :: Lens' BinaryColumnStatisticsData Natural
- binaryColumnStatisticsData_averageLength :: Lens' BinaryColumnStatisticsData Double
- binaryColumnStatisticsData_numberOfNulls :: Lens' BinaryColumnStatisticsData Natural
Documentation
data BinaryColumnStatisticsData Source #
Defines column statistics supported for bit sequence data values.
See: newBinaryColumnStatisticsData smart constructor.
Constructors
| BinaryColumnStatisticsData' | |
Fields
| |
Instances
newBinaryColumnStatisticsData Source #
Arguments
| :: Natural | |
| -> Double | |
| -> Natural | |
| -> BinaryColumnStatisticsData |
Create a value of BinaryColumnStatisticsData 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:maximumLength:BinaryColumnStatisticsData', binaryColumnStatisticsData_maximumLength - The size of the longest bit sequence in the column.
$sel:averageLength:BinaryColumnStatisticsData', binaryColumnStatisticsData_averageLength - The average bit sequence length in the column.
$sel:numberOfNulls:BinaryColumnStatisticsData', binaryColumnStatisticsData_numberOfNulls - The number of null values in the column.
binaryColumnStatisticsData_maximumLength :: Lens' BinaryColumnStatisticsData Natural Source #
The size of the longest bit sequence in the column.
binaryColumnStatisticsData_averageLength :: Lens' BinaryColumnStatisticsData Double Source #
The average bit sequence length in the column.
binaryColumnStatisticsData_numberOfNulls :: Lens' BinaryColumnStatisticsData Natural Source #
The number of null values in the column.