/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/quicksight/QuickSight_EXPORTS.h> #include <aws/quicksight/model/ConditionalFormattingColor.h> #include <aws/quicksight/model/ConditionalFormattingIcon.h> #include <utility> namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** * <p>The conditional formatting for the primary value of a * <code>GaugeChartVisual</code>.</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/GaugeChartPrimaryValueConditionalFormatting">AWS * API Reference</a></p> */ class GaugeChartPrimaryValueConditionalFormatting { public: AWS_QUICKSIGHT_API GaugeChartPrimaryValueConditionalFormatting(); AWS_QUICKSIGHT_API GaugeChartPrimaryValueConditionalFormatting(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API GaugeChartPrimaryValueConditionalFormatting& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** * <p>The conditional formatting of the primary value text color.</p> */ inline const ConditionalFormattingColor& GetTextColor() const{ return m_textColor; } /** * <p>The conditional formatting of the primary value text color.</p> */ inline bool TextColorHasBeenSet() const { return m_textColorHasBeenSet; } /** * <p>The conditional formatting of the primary value text color.</p> */ inline void SetTextColor(const ConditionalFormattingColor& value) { m_textColorHasBeenSet = true; m_textColor = value; } /** * <p>The conditional formatting of the primary value text color.</p> */ inline void SetTextColor(ConditionalFormattingColor&& value) { m_textColorHasBeenSet = true; m_textColor = std::move(value); } /** * <p>The conditional formatting of the primary value text color.</p> */ inline GaugeChartPrimaryValueConditionalFormatting& WithTextColor(const ConditionalFormattingColor& value) { SetTextColor(value); return *this;} /** * <p>The conditional formatting of the primary value text color.</p> */ inline GaugeChartPrimaryValueConditionalFormatting& WithTextColor(ConditionalFormattingColor&& value) { SetTextColor(std::move(value)); return *this;} /** * <p>The conditional formatting of the primary value icon.</p> */ inline const ConditionalFormattingIcon& GetIcon() const{ return m_icon; } /** * <p>The conditional formatting of the primary value icon.</p> */ inline bool IconHasBeenSet() const { return m_iconHasBeenSet; } /** * <p>The conditional formatting of the primary value icon.</p> */ inline void SetIcon(const ConditionalFormattingIcon& value) { m_iconHasBeenSet = true; m_icon = value; } /** * <p>The conditional formatting of the primary value icon.</p> */ inline void SetIcon(ConditionalFormattingIcon&& value) { m_iconHasBeenSet = true; m_icon = std::move(value); } /** * <p>The conditional formatting of the primary value icon.</p> */ inline GaugeChartPrimaryValueConditionalFormatting& WithIcon(const ConditionalFormattingIcon& value) { SetIcon(value); return *this;} /** * <p>The conditional formatting of the primary value icon.</p> */ inline GaugeChartPrimaryValueConditionalFormatting& WithIcon(ConditionalFormattingIcon&& value) { SetIcon(std::move(value)); return *this;} private: ConditionalFormattingColor m_textColor; bool m_textColorHasBeenSet = false; ConditionalFormattingIcon m_icon; bool m_iconHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws