AWS SDK for C++

AWS SDK for C++ Version 1.11.690

Loading...
Searching...
No Matches
GetPartitionIndexesRequest.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 GetPartitionIndexesRequest() = 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 "GetPartitionIndexes"; }
28
29 AWS_GLUE_API Aws::String SerializePayload() const override;
30
32
34
37 inline const Aws::String& GetCatalogId() const { return m_catalogId; }
38 inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; }
39 template <typename CatalogIdT = Aws::String>
40 void SetCatalogId(CatalogIdT&& value) {
41 m_catalogIdHasBeenSet = true;
42 m_catalogId = std::forward<CatalogIdT>(value);
43 }
44 template <typename CatalogIdT = Aws::String>
46 SetCatalogId(std::forward<CatalogIdT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetDatabaseName() const { return m_databaseName; }
57 inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; }
58 template <typename DatabaseNameT = Aws::String>
59 void SetDatabaseName(DatabaseNameT&& value) {
60 m_databaseNameHasBeenSet = true;
61 m_databaseName = std::forward<DatabaseNameT>(value);
62 }
63 template <typename DatabaseNameT = Aws::String>
65 SetDatabaseName(std::forward<DatabaseNameT>(value));
66 return *this;
67 }
69
71
75 inline const Aws::String& GetTableName() const { return m_tableName; }
76 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
77 template <typename TableNameT = Aws::String>
78 void SetTableName(TableNameT&& value) {
79 m_tableNameHasBeenSet = true;
80 m_tableName = std::forward<TableNameT>(value);
81 }
82 template <typename TableNameT = Aws::String>
84 SetTableName(std::forward<TableNameT>(value));
85 return *this;
86 }
88
90
93 inline const Aws::String& GetNextToken() const { return m_nextToken; }
94 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
95 template <typename NextTokenT = Aws::String>
96 void SetNextToken(NextTokenT&& value) {
97 m_nextTokenHasBeenSet = true;
98 m_nextToken = std::forward<NextTokenT>(value);
99 }
100 template <typename NextTokenT = Aws::String>
102 SetNextToken(std::forward<NextTokenT>(value));
103 return *this;
104 }
106 private:
107 Aws::String m_catalogId;
108 bool m_catalogIdHasBeenSet = false;
109
110 Aws::String m_databaseName;
111 bool m_databaseNameHasBeenSet = false;
112
113 Aws::String m_tableName;
114 bool m_tableNameHasBeenSet = false;
115
116 Aws::String m_nextToken;
117 bool m_nextTokenHasBeenSet = false;
118};
119
120} // namespace Model
121} // namespace Glue
122} // namespace Aws
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_GLUE_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
GetPartitionIndexesRequest & WithTableName(TableNameT &&value)
GetPartitionIndexesRequest & WithCatalogId(CatalogIdT &&value)
AWS_GLUE_API GetPartitionIndexesRequest()=default
GetPartitionIndexesRequest & WithDatabaseName(DatabaseNameT &&value)
GetPartitionIndexesRequest & WithNextToken(NextTokenT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String