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-devicefarm/include/aws/devicefarm/model/GetRemoteAccessSessionResult.h

79 lines
2.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
#include <aws/devicefarm/model/RemoteAccessSession.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace DeviceFarm
{
namespace Model
{
/**
* <p>Represents the response from the server that lists detailed information about
* the remote access session.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRemoteAccessSessionResult">AWS
* API Reference</a></p>
*/
class AWS_DEVICEFARM_API GetRemoteAccessSessionResult
{
public:
GetRemoteAccessSessionResult();
GetRemoteAccessSessionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetRemoteAccessSessionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A container that lists detailed information about the remote access
* session.</p>
*/
inline const RemoteAccessSession& GetRemoteAccessSession() const{ return m_remoteAccessSession; }
/**
* <p>A container that lists detailed information about the remote access
* session.</p>
*/
inline void SetRemoteAccessSession(const RemoteAccessSession& value) { m_remoteAccessSession = value; }
/**
* <p>A container that lists detailed information about the remote access
* session.</p>
*/
inline void SetRemoteAccessSession(RemoteAccessSession&& value) { m_remoteAccessSession = std::move(value); }
/**
* <p>A container that lists detailed information about the remote access
* session.</p>
*/
inline GetRemoteAccessSessionResult& WithRemoteAccessSession(const RemoteAccessSession& value) { SetRemoteAccessSession(value); return *this;}
/**
* <p>A container that lists detailed information about the remote access
* session.</p>
*/
inline GetRemoteAccessSessionResult& WithRemoteAccessSession(RemoteAccessSession&& value) { SetRemoteAccessSession(std::move(value)); return *this;}
private:
RemoteAccessSession m_remoteAccessSession;
};
} // namespace Model
} // namespace DeviceFarm
} // namespace Aws