/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An aggregation based on the percentile of values in a dimension or
* measure.See Also:
AWS
* API Reference
The percentile value. This value can be any numeric constant 0–100. A * percentile value of 50 computes the median value of the measure.
*/ inline double GetPercentileValue() const{ return m_percentileValue; } /** *The percentile value. This value can be any numeric constant 0–100. A * percentile value of 50 computes the median value of the measure.
*/ inline bool PercentileValueHasBeenSet() const { return m_percentileValueHasBeenSet; } /** *The percentile value. This value can be any numeric constant 0–100. A * percentile value of 50 computes the median value of the measure.
*/ inline void SetPercentileValue(double value) { m_percentileValueHasBeenSet = true; m_percentileValue = value; } /** *The percentile value. This value can be any numeric constant 0–100. A * percentile value of 50 computes the median value of the measure.
*/ inline PercentileAggregation& WithPercentileValue(double value) { SetPercentileValue(value); return *this;} private: double m_percentileValue; bool m_percentileValueHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws