/**
* 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;} private: RemoteAccessSession m_remoteAccessSession; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws