AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetPartitionIndexesRequest.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:
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 "GetPartitionIndexes"; }
31
32 AWS_GLUE_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetCatalogId() const{ return m_catalogId; }
42 inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; }
43 inline void SetCatalogId(const Aws::String& value) { m_catalogIdHasBeenSet = true; m_catalogId = value; }
44 inline void SetCatalogId(Aws::String&& value) { m_catalogIdHasBeenSet = true; m_catalogId = std::move(value); }
45 inline void SetCatalogId(const char* value) { m_catalogIdHasBeenSet = true; m_catalogId.assign(value); }
46 inline GetPartitionIndexesRequest& WithCatalogId(const Aws::String& value) { SetCatalogId(value); return *this;}
47 inline GetPartitionIndexesRequest& WithCatalogId(Aws::String&& value) { SetCatalogId(std::move(value)); return *this;}
48 inline GetPartitionIndexesRequest& WithCatalogId(const char* value) { SetCatalogId(value); return *this;}
50
52
56 inline const Aws::String& GetDatabaseName() const{ return m_databaseName; }
57 inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; }
58 inline void SetDatabaseName(const Aws::String& value) { m_databaseNameHasBeenSet = true; m_databaseName = value; }
59 inline void SetDatabaseName(Aws::String&& value) { m_databaseNameHasBeenSet = true; m_databaseName = std::move(value); }
60 inline void SetDatabaseName(const char* value) { m_databaseNameHasBeenSet = true; m_databaseName.assign(value); }
61 inline GetPartitionIndexesRequest& WithDatabaseName(const Aws::String& value) { SetDatabaseName(value); return *this;}
62 inline GetPartitionIndexesRequest& WithDatabaseName(Aws::String&& value) { SetDatabaseName(std::move(value)); return *this;}
63 inline GetPartitionIndexesRequest& WithDatabaseName(const char* value) { SetDatabaseName(value); return *this;}
65
67
71 inline const Aws::String& GetTableName() const{ return m_tableName; }
72 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
73 inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; }
74 inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); }
75 inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); }
76 inline GetPartitionIndexesRequest& WithTableName(const Aws::String& value) { SetTableName(value); return *this;}
77 inline GetPartitionIndexesRequest& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;}
78 inline GetPartitionIndexesRequest& WithTableName(const char* value) { SetTableName(value); return *this;}
80
82
85 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
86 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
87 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
88 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
89 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
90 inline GetPartitionIndexesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
91 inline GetPartitionIndexesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
92 inline GetPartitionIndexesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
94 private:
95
96 Aws::String m_catalogId;
97 bool m_catalogIdHasBeenSet = false;
98
99 Aws::String m_databaseName;
100 bool m_databaseNameHasBeenSet = false;
101
102 Aws::String m_tableName;
103 bool m_tableNameHasBeenSet = false;
104
105 Aws::String m_nextToken;
106 bool m_nextTokenHasBeenSet = false;
107 };
108
109} // namespace Model
110} // namespace Glue
111} // namespace Aws
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetPartitionIndexesRequest & WithCatalogId(const Aws::String &value)
AWS_GLUE_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
GetPartitionIndexesRequest & WithNextToken(Aws::String &&value)
GetPartitionIndexesRequest & WithDatabaseName(Aws::String &&value)
GetPartitionIndexesRequest & WithNextToken(const char *value)
GetPartitionIndexesRequest & WithDatabaseName(const char *value)
GetPartitionIndexesRequest & WithTableName(const char *value)
GetPartitionIndexesRequest & WithCatalogId(const char *value)
GetPartitionIndexesRequest & WithTableName(const Aws::String &value)
GetPartitionIndexesRequest & WithTableName(Aws::String &&value)
GetPartitionIndexesRequest & WithNextToken(const Aws::String &value)
GetPartitionIndexesRequest & WithDatabaseName(const Aws::String &value)
GetPartitionIndexesRequest & WithCatalogId(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String