AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListAppsRequest.h
1
6#pragma once
7#include <aws/sms/SMS_EXPORTS.h>
8#include <aws/sms/SMSRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SMS
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_SMS_API ListAppsRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListApps"; }
32
33 AWS_SMS_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::Vector<Aws::String>& GetAppIds() const{ return m_appIds; }
43 inline bool AppIdsHasBeenSet() const { return m_appIdsHasBeenSet; }
44 inline void SetAppIds(const Aws::Vector<Aws::String>& value) { m_appIdsHasBeenSet = true; m_appIds = value; }
45 inline void SetAppIds(Aws::Vector<Aws::String>&& value) { m_appIdsHasBeenSet = true; m_appIds = std::move(value); }
46 inline ListAppsRequest& WithAppIds(const Aws::Vector<Aws::String>& value) { SetAppIds(value); return *this;}
47 inline ListAppsRequest& WithAppIds(Aws::Vector<Aws::String>&& value) { SetAppIds(std::move(value)); return *this;}
48 inline ListAppsRequest& AddAppIds(const Aws::String& value) { m_appIdsHasBeenSet = true; m_appIds.push_back(value); return *this; }
49 inline ListAppsRequest& AddAppIds(Aws::String&& value) { m_appIdsHasBeenSet = true; m_appIds.push_back(std::move(value)); return *this; }
50 inline ListAppsRequest& AddAppIds(const char* value) { m_appIdsHasBeenSet = true; m_appIds.push_back(value); return *this; }
52
54
57 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
58 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
59 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
60 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
61 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
62 inline ListAppsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
63 inline ListAppsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
64 inline ListAppsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
66
68
73 inline int GetMaxResults() const{ return m_maxResults; }
74 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
75 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
76 inline ListAppsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
78 private:
79
81 bool m_appIdsHasBeenSet = false;
82
83 Aws::String m_nextToken;
84 bool m_nextTokenHasBeenSet = false;
85
86 int m_maxResults;
87 bool m_maxResultsHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace SMS
92} // namespace Aws
ListAppsRequest & WithNextToken(const Aws::String &value)
ListAppsRequest & AddAppIds(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
AWS_SMS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListAppsRequest & WithNextToken(Aws::String &&value)
void SetAppIds(const Aws::Vector< Aws::String > &value)
ListAppsRequest & WithNextToken(const char *value)
ListAppsRequest & WithAppIds(Aws::Vector< Aws::String > &&value)
void SetNextToken(const Aws::String &value)
const Aws::Vector< Aws::String > & GetAppIds() const
void SetNextToken(const char *value)
ListAppsRequest & AddAppIds(Aws::String &&value)
ListAppsRequest & WithMaxResults(int value)
ListAppsRequest & WithAppIds(const Aws::Vector< Aws::String > &value)
void SetNextToken(Aws::String &&value)
const Aws::String & GetNextToken() const
void SetAppIds(Aws::Vector< Aws::String > &&value)
AWS_SMS_API Aws::String SerializePayload() const override
ListAppsRequest & AddAppIds(const char *value)
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