/** * 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 options that determine the null value format configuration.

See * Also:

AWS * API Reference

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

Determines the null string of null values.

*/ inline const Aws::String& GetNullString() const{ return m_nullString; } /** *

Determines the null string of null values.

*/ inline bool NullStringHasBeenSet() const { return m_nullStringHasBeenSet; } /** *

Determines the null string of null values.

*/ inline void SetNullString(const Aws::String& value) { m_nullStringHasBeenSet = true; m_nullString = value; } /** *

Determines the null string of null values.

*/ inline void SetNullString(Aws::String&& value) { m_nullStringHasBeenSet = true; m_nullString = std::move(value); } /** *

Determines the null string of null values.

*/ inline void SetNullString(const char* value) { m_nullStringHasBeenSet = true; m_nullString.assign(value); } /** *

Determines the null string of null values.

*/ inline NullValueFormatConfiguration& WithNullString(const Aws::String& value) { SetNullString(value); return *this;} /** *

Determines the null string of null values.

*/ inline NullValueFormatConfiguration& WithNullString(Aws::String&& value) { SetNullString(std::move(value)); return *this;} /** *

Determines the null string of null values.

*/ inline NullValueFormatConfiguration& WithNullString(const char* value) { SetNullString(value); return *this;} private: Aws::String m_nullString; bool m_nullStringHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws