AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListLibraryItemsRequest.h
1
6#pragma once
7#include <aws/qapps/QApps_EXPORTS.h>
8#include <aws/qapps/QAppsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace QApps
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_QAPPS_API ListLibraryItemsRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "ListLibraryItems"; }
35
36 AWS_QAPPS_API Aws::String SerializePayload() const override;
37
38 AWS_QAPPS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
41
42
44
48 inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
49 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
50 inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
51 inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
52 inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
53 inline ListLibraryItemsRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
54 inline ListLibraryItemsRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
55 inline ListLibraryItemsRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
57
59
62 inline int GetLimit() const{ return m_limit; }
63 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
64 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
65 inline ListLibraryItemsRequest& WithLimit(int value) { SetLimit(value); return *this;}
67
69
72 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
73 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
74 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
75 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
76 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
77 inline ListLibraryItemsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
78 inline ListLibraryItemsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
79 inline ListLibraryItemsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
81
83
86 inline const Aws::String& GetCategoryId() const{ return m_categoryId; }
87 inline bool CategoryIdHasBeenSet() const { return m_categoryIdHasBeenSet; }
88 inline void SetCategoryId(const Aws::String& value) { m_categoryIdHasBeenSet = true; m_categoryId = value; }
89 inline void SetCategoryId(Aws::String&& value) { m_categoryIdHasBeenSet = true; m_categoryId = std::move(value); }
90 inline void SetCategoryId(const char* value) { m_categoryIdHasBeenSet = true; m_categoryId.assign(value); }
91 inline ListLibraryItemsRequest& WithCategoryId(const Aws::String& value) { SetCategoryId(value); return *this;}
92 inline ListLibraryItemsRequest& WithCategoryId(Aws::String&& value) { SetCategoryId(std::move(value)); return *this;}
93 inline ListLibraryItemsRequest& WithCategoryId(const char* value) { SetCategoryId(value); return *this;}
95 private:
96
97 Aws::String m_instanceId;
98 bool m_instanceIdHasBeenSet = false;
99
100 int m_limit;
101 bool m_limitHasBeenSet = false;
102
103 Aws::String m_nextToken;
104 bool m_nextTokenHasBeenSet = false;
105
106 Aws::String m_categoryId;
107 bool m_categoryIdHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace QApps
112} // namespace Aws
ListLibraryItemsRequest & WithNextToken(const Aws::String &value)
AWS_QAPPS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListLibraryItemsRequest & WithLimit(int value)
AWS_QAPPS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListLibraryItemsRequest & WithNextToken(const char *value)
ListLibraryItemsRequest & WithInstanceId(const char *value)
AWS_QAPPS_API Aws::String SerializePayload() const override
ListLibraryItemsRequest & WithCategoryId(const Aws::String &value)
ListLibraryItemsRequest & WithNextToken(Aws::String &&value)
ListLibraryItemsRequest & WithInstanceId(Aws::String &&value)
ListLibraryItemsRequest & WithCategoryId(Aws::String &&value)
ListLibraryItemsRequest & WithCategoryId(const char *value)
ListLibraryItemsRequest & WithInstanceId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String