/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The custom narrative options.See Also:
AWS
* API Reference
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