/** * 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 Amazon QuickSight customizations associated with your AWS account or a * QuickSight namespace in a specific AWS Region.

See Also:

AWS * API Reference

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

The default theme for this QuickSight subscription.

*/ inline const Aws::String& GetDefaultTheme() const{ return m_defaultTheme; } /** *

The default theme for this QuickSight subscription.

*/ inline bool DefaultThemeHasBeenSet() const { return m_defaultThemeHasBeenSet; } /** *

The default theme for this QuickSight subscription.

*/ inline void SetDefaultTheme(const Aws::String& value) { m_defaultThemeHasBeenSet = true; m_defaultTheme = value; } /** *

The default theme for this QuickSight subscription.

*/ inline void SetDefaultTheme(Aws::String&& value) { m_defaultThemeHasBeenSet = true; m_defaultTheme = std::move(value); } /** *

The default theme for this QuickSight subscription.

*/ inline void SetDefaultTheme(const char* value) { m_defaultThemeHasBeenSet = true; m_defaultTheme.assign(value); } /** *

The default theme for this QuickSight subscription.

*/ inline AccountCustomization& WithDefaultTheme(const Aws::String& value) { SetDefaultTheme(value); return *this;} /** *

The default theme for this QuickSight subscription.

*/ inline AccountCustomization& WithDefaultTheme(Aws::String&& value) { SetDefaultTheme(std::move(value)); return *this;} /** *

The default theme for this QuickSight subscription.

*/ inline AccountCustomization& WithDefaultTheme(const char* value) { SetDefaultTheme(value); return *this;} private: Aws::String m_defaultTheme; bool m_defaultThemeHasBeenSet; }; } // namespace Model } // namespace QuickSight } // namespace Aws