/** * 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 custom narrative options.

See Also:

AWS * API Reference

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

The string input of custom narrative.

*/ inline const Aws::String& GetNarrative() const{ return m_narrative; } /** *

The string input of custom narrative.

*/ inline bool NarrativeHasBeenSet() const { return m_narrativeHasBeenSet; } /** *

The string input of custom narrative.

*/ inline void SetNarrative(const Aws::String& value) { m_narrativeHasBeenSet = true; m_narrative = value; } /** *

The string input of custom narrative.

*/ inline void SetNarrative(Aws::String&& value) { m_narrativeHasBeenSet = true; m_narrative = std::move(value); } /** *

The string input of custom narrative.

*/ inline void SetNarrative(const char* value) { m_narrativeHasBeenSet = true; m_narrative.assign(value); } /** *

The string input of custom narrative.

*/ inline CustomNarrativeOptions& WithNarrative(const Aws::String& value) { SetNarrative(value); return *this;} /** *

The string input of custom narrative.

*/ inline CustomNarrativeOptions& WithNarrative(Aws::String&& value) { SetNarrative(std::move(value)); return *this;} /** *

The string input of custom narrative.

*/ inline CustomNarrativeOptions& WithNarrative(const char* value) { SetNarrative(value); return *this;} private: Aws::String m_narrative; bool m_narrativeHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws