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-chime/include/aws/chime/model/GetAccountSettingsResult.h

68 lines
1.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/chime/Chime_EXPORTS.h>
#include <aws/chime/model/AccountSettings.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Chime
{
namespace Model
{
class AWS_CHIME_API GetAccountSettingsResult
{
public:
GetAccountSettingsResult();
GetAccountSettingsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetAccountSettingsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The Amazon Chime account settings.</p>
*/
inline const AccountSettings& GetAccountSettings() const{ return m_accountSettings; }
/**
* <p>The Amazon Chime account settings.</p>
*/
inline void SetAccountSettings(const AccountSettings& value) { m_accountSettings = value; }
/**
* <p>The Amazon Chime account settings.</p>
*/
inline void SetAccountSettings(AccountSettings&& value) { m_accountSettings = std::move(value); }
/**
* <p>The Amazon Chime account settings.</p>
*/
inline GetAccountSettingsResult& WithAccountSettings(const AccountSettings& value) { SetAccountSettings(value); return *this;}
/**
* <p>The Amazon Chime account settings.</p>
*/
inline GetAccountSettingsResult& WithAccountSettings(AccountSettings&& value) { SetAccountSettings(std::move(value)); return *this;}
private:
AccountSettings m_accountSettings;
};
} // namespace Model
} // namespace Chime
} // namespace Aws