/** * 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 the visual.

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 ComboChartFieldWells { public: AWS_QUICKSIGHT_API ComboChartFieldWells(); AWS_QUICKSIGHT_API ComboChartFieldWells(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API ComboChartFieldWells& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The aggregated field wells of a combo chart. Combo charts only have * aggregated field wells. Columns in a combo chart are aggregated by category.

*/ inline const ComboChartAggregatedFieldWells& GetComboChartAggregatedFieldWells() const{ return m_comboChartAggregatedFieldWells; } /** *

The aggregated field wells of a combo chart. Combo charts only have * aggregated field wells. Columns in a combo chart are aggregated by category.

*/ inline bool ComboChartAggregatedFieldWellsHasBeenSet() const { return m_comboChartAggregatedFieldWellsHasBeenSet; } /** *

The aggregated field wells of a combo chart. Combo charts only have * aggregated field wells. Columns in a combo chart are aggregated by category.

*/ inline void SetComboChartAggregatedFieldWells(const ComboChartAggregatedFieldWells& value) { m_comboChartAggregatedFieldWellsHasBeenSet = true; m_comboChartAggregatedFieldWells = value; } /** *

The aggregated field wells of a combo chart. Combo charts only have * aggregated field wells. Columns in a combo chart are aggregated by category.

*/ inline void SetComboChartAggregatedFieldWells(ComboChartAggregatedFieldWells&& value) { m_comboChartAggregatedFieldWellsHasBeenSet = true; m_comboChartAggregatedFieldWells = std::move(value); } /** *

The aggregated field wells of a combo chart. Combo charts only have * aggregated field wells. Columns in a combo chart are aggregated by category.

*/ inline ComboChartFieldWells& WithComboChartAggregatedFieldWells(const ComboChartAggregatedFieldWells& value) { SetComboChartAggregatedFieldWells(value); return *this;} /** *

The aggregated field wells of a combo chart. Combo charts only have * aggregated field wells. Columns in a combo chart are aggregated by category.

*/ inline ComboChartFieldWells& WithComboChartAggregatedFieldWells(ComboChartAggregatedFieldWells&& value) { SetComboChartAggregatedFieldWells(std::move(value)); return *this;} private: ComboChartAggregatedFieldWells m_comboChartAggregatedFieldWells; bool m_comboChartAggregatedFieldWellsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws