/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

The field wells of a BoxPlotVisual.

This is a union type * structure. For this structure to be valid, only one of the attributes can be * defined.

See Also:

AWS * API Reference

*/ class BoxPlotFieldWells { public: AWS_QUICKSIGHT_API BoxPlotFieldWells(); AWS_QUICKSIGHT_API BoxPlotFieldWells(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API BoxPlotFieldWells& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The aggregated field wells of a box plot.

*/ inline const BoxPlotAggregatedFieldWells& GetBoxPlotAggregatedFieldWells() const{ return m_boxPlotAggregatedFieldWells; } /** *

The aggregated field wells of a box plot.

*/ inline bool BoxPlotAggregatedFieldWellsHasBeenSet() const { return m_boxPlotAggregatedFieldWellsHasBeenSet; } /** *

The aggregated field wells of a box plot.

*/ inline void SetBoxPlotAggregatedFieldWells(const BoxPlotAggregatedFieldWells& value) { m_boxPlotAggregatedFieldWellsHasBeenSet = true; m_boxPlotAggregatedFieldWells = value; } /** *

The aggregated field wells of a box plot.

*/ inline void SetBoxPlotAggregatedFieldWells(BoxPlotAggregatedFieldWells&& value) { m_boxPlotAggregatedFieldWellsHasBeenSet = true; m_boxPlotAggregatedFieldWells = std::move(value); } /** *

The aggregated field wells of a box plot.

*/ inline BoxPlotFieldWells& WithBoxPlotAggregatedFieldWells(const BoxPlotAggregatedFieldWells& value) { SetBoxPlotAggregatedFieldWells(value); return *this;} /** *

The aggregated field wells of a box plot.

*/ inline BoxPlotFieldWells& WithBoxPlotAggregatedFieldWells(BoxPlotAggregatedFieldWells&& value) { SetBoxPlotAggregatedFieldWells(std::move(value)); return *this;} private: BoxPlotAggregatedFieldWells m_boxPlotAggregatedFieldWells; bool m_boxPlotAggregatedFieldWellsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws