/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { class DescribeAccountSettingsResult { public: AWS_QUICKSIGHT_API DescribeAccountSettingsResult(); AWS_QUICKSIGHT_API DescribeAccountSettingsResult(const Aws::AmazonWebServiceResult& result); AWS_QUICKSIGHT_API DescribeAccountSettingsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon QuickSight settings for this Amazon Web Services account. This * information includes the edition of Amazon Amazon QuickSight that you subscribed * to (Standard or Enterprise) and the notification email for the Amazon QuickSight * subscription.

In the QuickSight console, the Amazon QuickSight * subscription is sometimes referred to as a QuickSight "account" even though it's * technically not an account by itself. Instead, it's a subscription to the Amazon * QuickSight service for your Amazon Web Services account. The edition that you * subscribe to applies to Amazon QuickSight in every Amazon Web Services Region * where you use it.

*/ inline const AccountSettings& GetAccountSettings() const{ return m_accountSettings; } /** *

The Amazon QuickSight settings for this Amazon Web Services account. This * information includes the edition of Amazon Amazon QuickSight that you subscribed * to (Standard or Enterprise) and the notification email for the Amazon QuickSight * subscription.

In the QuickSight console, the Amazon QuickSight * subscription is sometimes referred to as a QuickSight "account" even though it's * technically not an account by itself. Instead, it's a subscription to the Amazon * QuickSight service for your Amazon Web Services account. The edition that you * subscribe to applies to Amazon QuickSight in every Amazon Web Services Region * where you use it.

*/ inline void SetAccountSettings(const AccountSettings& value) { m_accountSettings = value; } /** *

The Amazon QuickSight settings for this Amazon Web Services account. This * information includes the edition of Amazon Amazon QuickSight that you subscribed * to (Standard or Enterprise) and the notification email for the Amazon QuickSight * subscription.

In the QuickSight console, the Amazon QuickSight * subscription is sometimes referred to as a QuickSight "account" even though it's * technically not an account by itself. Instead, it's a subscription to the Amazon * QuickSight service for your Amazon Web Services account. The edition that you * subscribe to applies to Amazon QuickSight in every Amazon Web Services Region * where you use it.

*/ inline void SetAccountSettings(AccountSettings&& value) { m_accountSettings = std::move(value); } /** *

The Amazon QuickSight settings for this Amazon Web Services account. This * information includes the edition of Amazon Amazon QuickSight that you subscribed * to (Standard or Enterprise) and the notification email for the Amazon QuickSight * subscription.

In the QuickSight console, the Amazon QuickSight * subscription is sometimes referred to as a QuickSight "account" even though it's * technically not an account by itself. Instead, it's a subscription to the Amazon * QuickSight service for your Amazon Web Services account. The edition that you * subscribe to applies to Amazon QuickSight in every Amazon Web Services Region * where you use it.

*/ inline DescribeAccountSettingsResult& WithAccountSettings(const AccountSettings& value) { SetAccountSettings(value); return *this;} /** *

The Amazon QuickSight settings for this Amazon Web Services account. This * information includes the edition of Amazon Amazon QuickSight that you subscribed * to (Standard or Enterprise) and the notification email for the Amazon QuickSight * subscription.

In the QuickSight console, the Amazon QuickSight * subscription is sometimes referred to as a QuickSight "account" even though it's * technically not an account by itself. Instead, it's a subscription to the Amazon * QuickSight service for your Amazon Web Services account. The edition that you * subscribe to applies to Amazon QuickSight in every Amazon Web Services Region * where you use it.

*/ inline DescribeAccountSettingsResult& WithAccountSettings(AccountSettings&& value) { SetAccountSettings(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeAccountSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeAccountSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeAccountSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *

The HTTP status of the request.

*/ inline int GetStatus() const{ return m_status; } /** *

The HTTP status of the request.

*/ inline void SetStatus(int value) { m_status = value; } /** *

The HTTP status of the request.

*/ inline DescribeAccountSettingsResult& WithStatus(int value) { SetStatus(value); return *this;} private: AccountSettings m_accountSettings; Aws::String m_requestId; int m_status; }; } // namespace Model } // namespace QuickSight } // namespace Aws