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