/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the response from the server that lists detailed information about
* the remote access session.See Also:
AWS
* API Reference
A container that lists detailed information about the remote access * session.
*/ inline const RemoteAccessSession& GetRemoteAccessSession() const{ return m_remoteAccessSession; } /** *A container that lists detailed information about the remote access * session.
*/ inline void SetRemoteAccessSession(const RemoteAccessSession& value) { m_remoteAccessSession = value; } /** *A container that lists detailed information about the remote access * session.
*/ inline void SetRemoteAccessSession(RemoteAccessSession&& value) { m_remoteAccessSession = std::move(value); } /** *A container that lists detailed information about the remote access * session.
*/ inline GetRemoteAccessSessionResult& WithRemoteAccessSession(const RemoteAccessSession& value) { SetRemoteAccessSession(value); return *this;} /** *A container that lists detailed information about the remote access * session.
*/ inline GetRemoteAccessSessionResult& WithRemoteAccessSession(RemoteAccessSession&& value) { SetRemoteAccessSession(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetRemoteAccessSessionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetRemoteAccessSessionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetRemoteAccessSessionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: RemoteAccessSession m_remoteAccessSession; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws