AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DescribeSessionsResult.h
1
6#pragma once
7#include <aws/appstream/AppStream_EXPORTS.h>
8#include <aws/appstream/model/Session.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace AppStream {
24namespace Model {
26 public:
27 AWS_APPSTREAM_API DescribeSessionsResult() = default;
30
32
35 inline const Aws::Vector<Session>& GetSessions() const { return m_sessions; }
36 template <typename SessionsT = Aws::Vector<Session>>
37 void SetSessions(SessionsT&& value) {
38 m_sessionsHasBeenSet = true;
39 m_sessions = std::forward<SessionsT>(value);
40 }
41 template <typename SessionsT = Aws::Vector<Session>>
43 SetSessions(std::forward<SessionsT>(value));
44 return *this;
45 }
46 template <typename SessionsT = Session>
47 DescribeSessionsResult& AddSessions(SessionsT&& value) {
48 m_sessionsHasBeenSet = true;
49 m_sessions.emplace_back(std::forward<SessionsT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetNextToken() const { return m_nextToken; }
60 template <typename NextTokenT = Aws::String>
61 void SetNextToken(NextTokenT&& value) {
62 m_nextTokenHasBeenSet = true;
63 m_nextToken = std::forward<NextTokenT>(value);
64 }
65 template <typename NextTokenT = Aws::String>
67 SetNextToken(std::forward<NextTokenT>(value));
68 return *this;
69 }
71
73
74 inline const Aws::String& GetRequestId() const { return m_requestId; }
75 template <typename RequestIdT = Aws::String>
76 void SetRequestId(RequestIdT&& value) {
77 m_requestIdHasBeenSet = true;
78 m_requestId = std::forward<RequestIdT>(value);
79 }
80 template <typename RequestIdT = Aws::String>
82 SetRequestId(std::forward<RequestIdT>(value));
83 return *this;
84 }
86 private:
87 Aws::Vector<Session> m_sessions;
88
89 Aws::String m_nextToken;
90
91 Aws::String m_requestId;
92 bool m_sessionsHasBeenSet = false;
93 bool m_nextTokenHasBeenSet = false;
94 bool m_requestIdHasBeenSet = false;
95};
96
97} // namespace Model
98} // namespace AppStream
99} // namespace Aws
AWS_APPSTREAM_API DescribeSessionsResult()=default
const Aws::Vector< Session > & GetSessions() const
DescribeSessionsResult & AddSessions(SessionsT &&value)
DescribeSessionsResult & WithNextToken(NextTokenT &&value)
AWS_APPSTREAM_API DescribeSessionsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_APPSTREAM_API DescribeSessionsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeSessionsResult & WithSessions(SessionsT &&value)
DescribeSessionsResult & WithRequestId(RequestIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue