/** * 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 AWS_QUICKSIGHT_API DescribeAccountSettingsResult { public: DescribeAccountSettingsResult(); DescribeAccountSettingsResult(const Aws::AmazonWebServiceResult& result); DescribeAccountSettingsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The QuickSight settings for this AWS account. This information includes the * edition of Amazon QuickSight that you subscribed to (Standard or Enterprise) and * the notification email for the QuickSight subscription. The QuickSight console, * the 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 QuickSight service for your AWS account. The edition that * you subscribe to applies to QuickSight in every AWS Region where you use it. *

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

The QuickSight settings for this AWS account. This information includes the * edition of Amazon QuickSight that you subscribed to (Standard or Enterprise) and * the notification email for the QuickSight subscription. The QuickSight console, * the 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 QuickSight service for your AWS account. The edition that * you subscribe to applies to QuickSight in every AWS Region where you use it. *

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

The QuickSight settings for this AWS account. This information includes the * edition of Amazon QuickSight that you subscribed to (Standard or Enterprise) and * the notification email for the QuickSight subscription. The QuickSight console, * the 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 QuickSight service for your AWS account. The edition that * you subscribe to applies to QuickSight in every AWS Region where you use it. *

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

The QuickSight settings for this AWS account. This information includes the * edition of Amazon QuickSight that you subscribed to (Standard or Enterprise) and * the notification email for the QuickSight subscription. The QuickSight console, * the 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 QuickSight service for your AWS account. The edition that * you subscribe to applies to QuickSight in every AWS Region where you use it. *

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

The QuickSight settings for this AWS account. This information includes the * edition of Amazon QuickSight that you subscribed to (Standard or Enterprise) and * the notification email for the QuickSight subscription. The QuickSight console, * the 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 QuickSight service for your AWS account. The edition that * you subscribe to applies to QuickSight in every AWS Region where you use it. *

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

The AWS request ID for this operation.

*/ inline const Aws::String& GetRequestId() const{ return m_requestId; } /** *

The AWS request ID for this operation.

*/ inline void SetRequestId(const Aws::String& value) { m_requestId = value; } /** *

The AWS request ID for this operation.

*/ inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } /** *

The AWS request ID for this operation.

*/ inline void SetRequestId(const char* value) { m_requestId.assign(value); } /** *

The AWS request ID for this operation.

*/ inline DescribeAccountSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} /** *

The AWS request ID for this operation.

*/ inline DescribeAccountSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} /** *

The AWS request ID for this operation.

*/ 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