/** * 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/core/utils/memory/stl/AWSVector.h> #include <aws/core/utils/memory/stl/AWSString.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 after AWS Device Farm makes a request * to return 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/ListRemoteAccessSessionsResult">AWS * API Reference</a></p> */ class ListRemoteAccessSessionsResult { public: AWS_DEVICEFARM_API ListRemoteAccessSessionsResult(); AWS_DEVICEFARM_API ListRemoteAccessSessionsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_DEVICEFARM_API ListRemoteAccessSessionsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>A container that represents the metadata from the service about each remote * access session you are requesting.</p> */ inline const Aws::Vector<RemoteAccessSession>& GetRemoteAccessSessions() const{ return m_remoteAccessSessions; } /** * <p>A container that represents the metadata from the service about each remote * access session you are requesting.</p> */ inline void SetRemoteAccessSessions(const Aws::Vector<RemoteAccessSession>& value) { m_remoteAccessSessions = value; } /** * <p>A container that represents the metadata from the service about each remote * access session you are requesting.</p> */ inline void SetRemoteAccessSessions(Aws::Vector<RemoteAccessSession>&& value) { m_remoteAccessSessions = std::move(value); } /** * <p>A container that represents the metadata from the service about each remote * access session you are requesting.</p> */ inline ListRemoteAccessSessionsResult& WithRemoteAccessSessions(const Aws::Vector<RemoteAccessSession>& value) { SetRemoteAccessSessions(value); return *this;} /** * <p>A container that represents the metadata from the service about each remote * access session you are requesting.</p> */ inline ListRemoteAccessSessionsResult& WithRemoteAccessSessions(Aws::Vector<RemoteAccessSession>&& value) { SetRemoteAccessSessions(std::move(value)); return *this;} /** * <p>A container that represents the metadata from the service about each remote * access session you are requesting.</p> */ inline ListRemoteAccessSessionsResult& AddRemoteAccessSessions(const RemoteAccessSession& value) { m_remoteAccessSessions.push_back(value); return *this; } /** * <p>A container that represents the metadata from the service about each remote * access session you are requesting.</p> */ inline ListRemoteAccessSessionsResult& AddRemoteAccessSessions(RemoteAccessSession&& value) { m_remoteAccessSessions.push_back(std::move(value)); return *this; } /** * <p>An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.</p> */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * <p>An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.</p> */ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** * <p>An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.</p> */ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** * <p>An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.</p> */ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** * <p>An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.</p> */ inline ListRemoteAccessSessionsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * <p>An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.</p> */ inline ListRemoteAccessSessionsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * <p>An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.</p> */ inline ListRemoteAccessSessionsResult& WithNextToken(const char* value) { SetNextToken(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 ListRemoteAccessSessionsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListRemoteAccessSessionsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListRemoteAccessSessionsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector<RemoteAccessSession> m_remoteAccessSessions; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws