AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
ListEntitiesRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/glue/Glue_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Glue {
15namespace Model {
16
20 public:
21 AWS_GLUE_API ListEntitiesRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "ListEntities"; }
28
29 AWS_GLUE_API Aws::String SerializePayload() const override;
30
32
34
38 inline const Aws::String& GetConnectionName() const { return m_connectionName; }
39 inline bool ConnectionNameHasBeenSet() const { return m_connectionNameHasBeenSet; }
40 template <typename ConnectionNameT = Aws::String>
41 void SetConnectionName(ConnectionNameT&& value) {
42 m_connectionNameHasBeenSet = true;
43 m_connectionName = std::forward<ConnectionNameT>(value);
44 }
45 template <typename ConnectionNameT = Aws::String>
46 ListEntitiesRequest& WithConnectionName(ConnectionNameT&& value) {
47 SetConnectionName(std::forward<ConnectionNameT>(value));
48 return *this;
49 }
51
53
57 inline const Aws::String& GetCatalogId() const { return m_catalogId; }
58 inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; }
59 template <typename CatalogIdT = Aws::String>
60 void SetCatalogId(CatalogIdT&& value) {
61 m_catalogIdHasBeenSet = true;
62 m_catalogId = std::forward<CatalogIdT>(value);
63 }
64 template <typename CatalogIdT = Aws::String>
65 ListEntitiesRequest& WithCatalogId(CatalogIdT&& value) {
66 SetCatalogId(std::forward<CatalogIdT>(value));
67 return *this;
68 }
70
72
77 inline const Aws::String& GetParentEntityName() const { return m_parentEntityName; }
78 inline bool ParentEntityNameHasBeenSet() const { return m_parentEntityNameHasBeenSet; }
79 template <typename ParentEntityNameT = Aws::String>
80 void SetParentEntityName(ParentEntityNameT&& value) {
81 m_parentEntityNameHasBeenSet = true;
82 m_parentEntityName = std::forward<ParentEntityNameT>(value);
83 }
84 template <typename ParentEntityNameT = Aws::String>
85 ListEntitiesRequest& WithParentEntityName(ParentEntityNameT&& value) {
86 SetParentEntityName(std::forward<ParentEntityNameT>(value));
87 return *this;
88 }
90
92
95 inline const Aws::String& GetNextToken() const { return m_nextToken; }
96 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
97 template <typename NextTokenT = Aws::String>
98 void SetNextToken(NextTokenT&& value) {
99 m_nextTokenHasBeenSet = true;
100 m_nextToken = std::forward<NextTokenT>(value);
101 }
102 template <typename NextTokenT = Aws::String>
103 ListEntitiesRequest& WithNextToken(NextTokenT&& value) {
104 SetNextToken(std::forward<NextTokenT>(value));
105 return *this;
106 }
108
110
113 inline const Aws::String& GetDataStoreApiVersion() const { return m_dataStoreApiVersion; }
114 inline bool DataStoreApiVersionHasBeenSet() const { return m_dataStoreApiVersionHasBeenSet; }
115 template <typename DataStoreApiVersionT = Aws::String>
116 void SetDataStoreApiVersion(DataStoreApiVersionT&& value) {
117 m_dataStoreApiVersionHasBeenSet = true;
118 m_dataStoreApiVersion = std::forward<DataStoreApiVersionT>(value);
119 }
120 template <typename DataStoreApiVersionT = Aws::String>
121 ListEntitiesRequest& WithDataStoreApiVersion(DataStoreApiVersionT&& value) {
122 SetDataStoreApiVersion(std::forward<DataStoreApiVersionT>(value));
123 return *this;
124 }
126 private:
127 Aws::String m_connectionName;
128
129 Aws::String m_catalogId;
130
131 Aws::String m_parentEntityName;
132
133 Aws::String m_nextToken;
134
135 Aws::String m_dataStoreApiVersion;
136 bool m_connectionNameHasBeenSet = false;
137 bool m_catalogIdHasBeenSet = false;
138 bool m_parentEntityNameHasBeenSet = false;
139 bool m_nextTokenHasBeenSet = false;
140 bool m_dataStoreApiVersionHasBeenSet = false;
141};
142
143} // namespace Model
144} // namespace Glue
145} // namespace Aws
AWS_GLUE_API ListEntitiesRequest()=default
ListEntitiesRequest & WithConnectionName(ConnectionNameT &&value)
const Aws::String & GetDataStoreApiVersion() const
const Aws::String & GetNextToken() const
ListEntitiesRequest & WithCatalogId(CatalogIdT &&value)
ListEntitiesRequest & WithDataStoreApiVersion(DataStoreApiVersionT &&value)
const Aws::String & GetConnectionName() const
ListEntitiesRequest & WithNextToken(NextTokenT &&value)
const Aws::String & GetParentEntityName() const
ListEntitiesRequest & WithParentEntityName(ParentEntityNameT &&value)
void SetConnectionName(ConnectionNameT &&value)
virtual const char * GetServiceRequestName() const override
AWS_GLUE_API Aws::String SerializePayload() const override
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
void SetParentEntityName(ParentEntityNameT &&value)
void SetDataStoreApiVersion(DataStoreApiVersionT &&value)
const Aws::String & GetCatalogId() const
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String