/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template 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& result); GetProxySessionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The proxy session details.

*/ inline const ProxySession& GetProxySession() const{ return m_proxySession; } /** *

The proxy session details.

*/ inline void SetProxySession(const ProxySession& value) { m_proxySession = value; } /** *

The proxy session details.

*/ inline void SetProxySession(ProxySession&& value) { m_proxySession = std::move(value); } /** *

The proxy session details.

*/ inline GetProxySessionResult& WithProxySession(const ProxySession& value) { SetProxySession(value); return *this;} /** *

The proxy session details.

*/ inline GetProxySessionResult& WithProxySession(ProxySession&& value) { SetProxySession(std::move(value)); return *this;} private: ProxySession m_proxySession; }; } // namespace Model } // namespace Chime } // namespace Aws