/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Defines column statistics supported for timestamp data columns.See
* Also:
AWS
* API Reference
The lowest value in the column.
*/ inline const Aws::Utils::DateTime& GetMinimumValue() const{ return m_minimumValue; } /** *The lowest value in the column.
*/ inline bool MinimumValueHasBeenSet() const { return m_minimumValueHasBeenSet; } /** *The lowest value in the column.
*/ inline void SetMinimumValue(const Aws::Utils::DateTime& value) { m_minimumValueHasBeenSet = true; m_minimumValue = value; } /** *The lowest value in the column.
*/ inline void SetMinimumValue(Aws::Utils::DateTime&& value) { m_minimumValueHasBeenSet = true; m_minimumValue = std::move(value); } /** *The lowest value in the column.
*/ inline DateColumnStatisticsData& WithMinimumValue(const Aws::Utils::DateTime& value) { SetMinimumValue(value); return *this;} /** *The lowest value in the column.
*/ inline DateColumnStatisticsData& WithMinimumValue(Aws::Utils::DateTime&& value) { SetMinimumValue(std::move(value)); return *this;} /** *The highest value in the column.
*/ inline const Aws::Utils::DateTime& GetMaximumValue() const{ return m_maximumValue; } /** *The highest value in the column.
*/ inline bool MaximumValueHasBeenSet() const { return m_maximumValueHasBeenSet; } /** *The highest value in the column.
*/ inline void SetMaximumValue(const Aws::Utils::DateTime& value) { m_maximumValueHasBeenSet = true; m_maximumValue = value; } /** *The highest value in the column.
*/ inline void SetMaximumValue(Aws::Utils::DateTime&& value) { m_maximumValueHasBeenSet = true; m_maximumValue = std::move(value); } /** *The highest value in the column.
*/ inline DateColumnStatisticsData& WithMaximumValue(const Aws::Utils::DateTime& value) { SetMaximumValue(value); return *this;} /** *The highest value in the column.
*/ inline DateColumnStatisticsData& WithMaximumValue(Aws::Utils::DateTime&& value) { SetMaximumValue(std::move(value)); return *this;} /** *The number of null values in the column.
*/ inline long long GetNumberOfNulls() const{ return m_numberOfNulls; } /** *The number of null values in the column.
*/ inline bool NumberOfNullsHasBeenSet() const { return m_numberOfNullsHasBeenSet; } /** *The number of null values in the column.
*/ inline void SetNumberOfNulls(long long value) { m_numberOfNullsHasBeenSet = true; m_numberOfNulls = value; } /** *The number of null values in the column.
*/ inline DateColumnStatisticsData& WithNumberOfNulls(long long value) { SetNumberOfNulls(value); return *this;} /** *The number of distinct values in a column.
*/ inline long long GetNumberOfDistinctValues() const{ return m_numberOfDistinctValues; } /** *The number of distinct values in a column.
*/ inline bool NumberOfDistinctValuesHasBeenSet() const { return m_numberOfDistinctValuesHasBeenSet; } /** *The number of distinct values in a column.
*/ inline void SetNumberOfDistinctValues(long long value) { m_numberOfDistinctValuesHasBeenSet = true; m_numberOfDistinctValues = value; } /** *The number of distinct values in a column.
*/ inline DateColumnStatisticsData& WithNumberOfDistinctValues(long long value) { SetNumberOfDistinctValues(value); return *this;} private: Aws::Utils::DateTime m_minimumValue; bool m_minimumValueHasBeenSet = false; Aws::Utils::DateTime m_maximumValue; bool m_maximumValueHasBeenSet = false; long long m_numberOfNulls; bool m_numberOfNullsHasBeenSet = false; long long m_numberOfDistinctValues; bool m_numberOfDistinctValuesHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws