AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DescribeApplicationsRequest.h
1
6#pragma once
7#include <aws/appstream/AppStreamRequest.h>
8#include <aws/appstream/AppStream_EXPORTS.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 {
15namespace AppStream {
16namespace Model {
17
21 public:
22 AWS_APPSTREAM_API DescribeApplicationsRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DescribeApplications"; }
29
30 AWS_APPSTREAM_API Aws::String SerializePayload() const override;
31
33
35
38 inline const Aws::Vector<Aws::String>& GetArns() const { return m_arns; }
39 inline bool ArnsHasBeenSet() const { return m_arnsHasBeenSet; }
40 template <typename ArnsT = Aws::Vector<Aws::String>>
41 void SetArns(ArnsT&& value) {
42 m_arnsHasBeenSet = true;
43 m_arns = std::forward<ArnsT>(value);
44 }
45 template <typename ArnsT = Aws::Vector<Aws::String>>
47 SetArns(std::forward<ArnsT>(value));
48 return *this;
49 }
50 template <typename ArnsT = Aws::String>
52 m_arnsHasBeenSet = true;
53 m_arns.emplace_back(std::forward<ArnsT>(value));
54 return *this;
55 }
57
59
63 inline const Aws::String& GetNextToken() const { return m_nextToken; }
64 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
65 template <typename NextTokenT = Aws::String>
66 void SetNextToken(NextTokenT&& value) {
67 m_nextTokenHasBeenSet = true;
68 m_nextToken = std::forward<NextTokenT>(value);
69 }
70 template <typename NextTokenT = Aws::String>
72 SetNextToken(std::forward<NextTokenT>(value));
73 return *this;
74 }
76
78
81 inline int GetMaxResults() const { return m_maxResults; }
82 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
83 inline void SetMaxResults(int value) {
84 m_maxResultsHasBeenSet = true;
85 m_maxResults = value;
86 }
88 SetMaxResults(value);
89 return *this;
90 }
92 private:
94
95 Aws::String m_nextToken;
96
97 int m_maxResults{0};
98 bool m_arnsHasBeenSet = false;
99 bool m_nextTokenHasBeenSet = false;
100 bool m_maxResultsHasBeenSet = false;
101};
102
103} // namespace Model
104} // namespace AppStream
105} // namespace Aws
AWS_APPSTREAM_API DescribeApplicationsRequest()=default
virtual const char * GetServiceRequestName() const override
DescribeApplicationsRequest & WithMaxResults(int value)
DescribeApplicationsRequest & AddArns(ArnsT &&value)
DescribeApplicationsRequest & WithArns(ArnsT &&value)
AWS_APPSTREAM_API Aws::String SerializePayload() const override
DescribeApplicationsRequest & WithNextToken(NextTokenT &&value)
AWS_APPSTREAM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
const Aws::Vector< Aws::String > & GetArns() const
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector