AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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() = default;
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 template<typename InstanceIdT = Aws::String>
51 void SetInstanceId(InstanceIdT&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::forward<InstanceIdT>(value); }
52 template<typename InstanceIdT = Aws::String>
53 ListLibraryItemsRequest& WithInstanceId(InstanceIdT&& value) { SetInstanceId(std::forward<InstanceIdT>(value)); return *this;}
55
57
60 inline int GetLimit() const { return m_limit; }
61 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
62 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
63 inline ListLibraryItemsRequest& WithLimit(int value) { SetLimit(value); return *this;}
65
67
70 inline const Aws::String& GetNextToken() const { return m_nextToken; }
71 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
72 template<typename NextTokenT = Aws::String>
73 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
74 template<typename NextTokenT = Aws::String>
75 ListLibraryItemsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
77
79
82 inline const Aws::String& GetCategoryId() const { return m_categoryId; }
83 inline bool CategoryIdHasBeenSet() const { return m_categoryIdHasBeenSet; }
84 template<typename CategoryIdT = Aws::String>
85 void SetCategoryId(CategoryIdT&& value) { m_categoryIdHasBeenSet = true; m_categoryId = std::forward<CategoryIdT>(value); }
86 template<typename CategoryIdT = Aws::String>
87 ListLibraryItemsRequest& WithCategoryId(CategoryIdT&& value) { SetCategoryId(std::forward<CategoryIdT>(value)); return *this;}
89 private:
90
91 Aws::String m_instanceId;
92 bool m_instanceIdHasBeenSet = false;
93
94 int m_limit{0};
95 bool m_limitHasBeenSet = false;
96
97 Aws::String m_nextToken;
98 bool m_nextTokenHasBeenSet = false;
99
100 Aws::String m_categoryId;
101 bool m_categoryIdHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace QApps
106} // namespace Aws
AWS_QAPPS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListLibraryItemsRequest & WithLimit(int value)
AWS_QAPPS_API ListLibraryItemsRequest()=default
AWS_QAPPS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListLibraryItemsRequest & WithNextToken(NextTokenT &&value)
AWS_QAPPS_API Aws::String SerializePayload() const override
ListLibraryItemsRequest & WithInstanceId(InstanceIdT &&value)
ListLibraryItemsRequest & WithCategoryId(CategoryIdT &&value)
virtual const char * GetServiceRequestName() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String