/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Amazon QuickSight customizations associated with your AWS account or a
* QuickSight namespace in a specific AWS Region.See Also:
AWS
* API Reference
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