AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListEntitiesRequest.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Glue
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_GLUE_API ListEntitiesRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "ListEntities"; }
31
32 AWS_GLUE_API Aws::String SerializePayload() const override;
33
35
36
38
42 inline const Aws::String& GetConnectionName() const { return m_connectionName; }
43 inline bool ConnectionNameHasBeenSet() const { return m_connectionNameHasBeenSet; }
44 template<typename ConnectionNameT = Aws::String>
45 void SetConnectionName(ConnectionNameT&& value) { m_connectionNameHasBeenSet = true; m_connectionName = std::forward<ConnectionNameT>(value); }
46 template<typename ConnectionNameT = Aws::String>
47 ListEntitiesRequest& WithConnectionName(ConnectionNameT&& value) { SetConnectionName(std::forward<ConnectionNameT>(value)); return *this;}
49
51
55 inline const Aws::String& GetCatalogId() const { return m_catalogId; }
56 inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; }
57 template<typename CatalogIdT = Aws::String>
58 void SetCatalogId(CatalogIdT&& value) { m_catalogIdHasBeenSet = true; m_catalogId = std::forward<CatalogIdT>(value); }
59 template<typename CatalogIdT = Aws::String>
60 ListEntitiesRequest& WithCatalogId(CatalogIdT&& value) { SetCatalogId(std::forward<CatalogIdT>(value)); return *this;}
62
64
69 inline const Aws::String& GetParentEntityName() const { return m_parentEntityName; }
70 inline bool ParentEntityNameHasBeenSet() const { return m_parentEntityNameHasBeenSet; }
71 template<typename ParentEntityNameT = Aws::String>
72 void SetParentEntityName(ParentEntityNameT&& value) { m_parentEntityNameHasBeenSet = true; m_parentEntityName = std::forward<ParentEntityNameT>(value); }
73 template<typename ParentEntityNameT = Aws::String>
74 ListEntitiesRequest& WithParentEntityName(ParentEntityNameT&& value) { SetParentEntityName(std::forward<ParentEntityNameT>(value)); return *this;}
76
78
81 inline const Aws::String& GetNextToken() const { return m_nextToken; }
82 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
83 template<typename NextTokenT = Aws::String>
84 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
85 template<typename NextTokenT = Aws::String>
86 ListEntitiesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
88
90
93 inline const Aws::String& GetDataStoreApiVersion() const { return m_dataStoreApiVersion; }
94 inline bool DataStoreApiVersionHasBeenSet() const { return m_dataStoreApiVersionHasBeenSet; }
95 template<typename DataStoreApiVersionT = Aws::String>
96 void SetDataStoreApiVersion(DataStoreApiVersionT&& value) { m_dataStoreApiVersionHasBeenSet = true; m_dataStoreApiVersion = std::forward<DataStoreApiVersionT>(value); }
97 template<typename DataStoreApiVersionT = Aws::String>
98 ListEntitiesRequest& WithDataStoreApiVersion(DataStoreApiVersionT&& value) { SetDataStoreApiVersion(std::forward<DataStoreApiVersionT>(value)); return *this;}
100 private:
101
102 Aws::String m_connectionName;
103 bool m_connectionNameHasBeenSet = false;
104
105 Aws::String m_catalogId;
106 bool m_catalogIdHasBeenSet = false;
107
108 Aws::String m_parentEntityName;
109 bool m_parentEntityNameHasBeenSet = false;
110
111 Aws::String m_nextToken;
112 bool m_nextTokenHasBeenSet = false;
113
114 Aws::String m_dataStoreApiVersion;
115 bool m_dataStoreApiVersionHasBeenSet = false;
116 };
117
118} // namespace Model
119} // namespace Glue
120} // 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