AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListGlobalTablesRequest.h
1
6#pragma once
7#include <aws/dynamodb/DynamoDB_EXPORTS.h>
8#include <aws/dynamodb/DynamoDBRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DynamoDB
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_DYNAMODB_API ListGlobalTablesRequest() = 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 "ListGlobalTables"; }
31
32 AWS_DYNAMODB_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetExclusiveStartGlobalTableName() const { return m_exclusiveStartGlobalTableName; }
42 inline bool ExclusiveStartGlobalTableNameHasBeenSet() const { return m_exclusiveStartGlobalTableNameHasBeenSet; }
43 template<typename ExclusiveStartGlobalTableNameT = Aws::String>
44 void SetExclusiveStartGlobalTableName(ExclusiveStartGlobalTableNameT&& value) { m_exclusiveStartGlobalTableNameHasBeenSet = true; m_exclusiveStartGlobalTableName = std::forward<ExclusiveStartGlobalTableNameT>(value); }
45 template<typename ExclusiveStartGlobalTableNameT = Aws::String>
46 ListGlobalTablesRequest& WithExclusiveStartGlobalTableName(ExclusiveStartGlobalTableNameT&& value) { SetExclusiveStartGlobalTableName(std::forward<ExclusiveStartGlobalTableNameT>(value)); return *this;}
48
50
58 inline int GetLimit() const { return m_limit; }
59 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
60 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
61 inline ListGlobalTablesRequest& WithLimit(int value) { SetLimit(value); return *this;}
63
65
68 inline const Aws::String& GetRegionName() const { return m_regionName; }
69 inline bool RegionNameHasBeenSet() const { return m_regionNameHasBeenSet; }
70 template<typename RegionNameT = Aws::String>
71 void SetRegionName(RegionNameT&& value) { m_regionNameHasBeenSet = true; m_regionName = std::forward<RegionNameT>(value); }
72 template<typename RegionNameT = Aws::String>
73 ListGlobalTablesRequest& WithRegionName(RegionNameT&& value) { SetRegionName(std::forward<RegionNameT>(value)); return *this;}
75 private:
76
77 Aws::String m_exclusiveStartGlobalTableName;
78 bool m_exclusiveStartGlobalTableNameHasBeenSet = false;
79
80 int m_limit{0};
81 bool m_limitHasBeenSet = false;
82
83 Aws::String m_regionName;
84 bool m_regionNameHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace DynamoDB
89} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_DYNAMODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListGlobalTablesRequest & WithExclusiveStartGlobalTableName(ExclusiveStartGlobalTableNameT &&value)
void SetExclusiveStartGlobalTableName(ExclusiveStartGlobalTableNameT &&value)
ListGlobalTablesRequest & WithLimit(int value)
ListGlobalTablesRequest & WithRegionName(RegionNameT &&value)
AWS_DYNAMODB_API Aws::String SerializePayload() const override
AWS_DYNAMODB_API ListGlobalTablesRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String