This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-quicksight/include/aws/quicksight/model/DescribeAccountSettingsResult.h

160 lines
6.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/quicksight/QuickSight_EXPORTS.h>
#include <aws/quicksight/model/AccountSettings.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
DescribeAccountSettingsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>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.
* </p>
*/
inline const AccountSettings& GetAccountSettings() const{ return m_accountSettings; }
/**
* <p>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.
* </p>
*/
inline void SetAccountSettings(const AccountSettings& value) { m_accountSettings = value; }
/**
* <p>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.
* </p>
*/
inline void SetAccountSettings(AccountSettings&& value) { m_accountSettings = std::move(value); }
/**
* <p>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.
* </p>
*/
inline DescribeAccountSettingsResult& WithAccountSettings(const AccountSettings& value) { SetAccountSettings(value); return *this;}
/**
* <p>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.
* </p>
*/
inline DescribeAccountSettingsResult& WithAccountSettings(AccountSettings&& value) { SetAccountSettings(std::move(value)); return *this;}
/**
* <p>The AWS request ID for this operation.</p>
*/
inline const Aws::String& GetRequestId() const{ return m_requestId; }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline void SetRequestId(const char* value) { m_requestId.assign(value); }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline DescribeAccountSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
/**
* <p>The AWS request ID for this operation.</p>
*/
inline DescribeAccountSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
/**
* <p>The AWS request ID for this operation.</p>
*/
inline DescribeAccountSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
/**
* <p>The HTTP status of the request.</p>
*/
inline int GetStatus() const{ return m_status; }
/**
* <p>The HTTP status of the request.</p>
*/
inline void SetStatus(int value) { m_status = value; }
/**
* <p>The HTTP status of the request.</p>
*/
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