/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the server response from a request to create a remote access
* session.See Also:
AWS
* API Reference
A container that describes the remote access session when the request to * create a remote access session is sent.
*/ inline const RemoteAccessSession& GetRemoteAccessSession() const{ return m_remoteAccessSession; } /** *A container that describes the remote access session when the request to * create a remote access session is sent.
*/ inline void SetRemoteAccessSession(const RemoteAccessSession& value) { m_remoteAccessSession = value; } /** *A container that describes the remote access session when the request to * create a remote access session is sent.
*/ inline void SetRemoteAccessSession(RemoteAccessSession&& value) { m_remoteAccessSession = std::move(value); } /** *A container that describes the remote access session when the request to * create a remote access session is sent.
*/ inline CreateRemoteAccessSessionResult& WithRemoteAccessSession(const RemoteAccessSession& value) { SetRemoteAccessSession(value); return *this;} /** *A container that describes the remote access session when the request to * create a remote access session is sent.
*/ inline CreateRemoteAccessSessionResult& 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 CreateRemoteAccessSessionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateRemoteAccessSessionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateRemoteAccessSessionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: RemoteAccessSession m_remoteAccessSession; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws