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/GetProxySessionResult.h

68 lines
1.6 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/ProxySession.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 GetProxySessionResult
{
public:
GetProxySessionResult();
GetProxySessionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetProxySessionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The proxy session details.</p>
*/
inline const ProxySession& GetProxySession() const{ return m_proxySession; }
/**
* <p>The proxy session details.</p>
*/
inline void SetProxySession(const ProxySession& value) { m_proxySession = value; }
/**
* <p>The proxy session details.</p>
*/
inline void SetProxySession(ProxySession&& value) { m_proxySession = std::move(value); }
/**
* <p>The proxy session details.</p>
*/
inline GetProxySessionResult& WithProxySession(const ProxySession& value) { SetProxySession(value); return *this;}
/**
* <p>The proxy session details.</p>
*/
inline GetProxySessionResult& WithProxySession(ProxySession&& value) { SetProxySession(std::move(value)); return *this;}
private:
ProxySession m_proxySession;
};
} // namespace Model
} // namespace Chime
} // namespace Aws