AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListTablesRequest.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
26 {
27 public:
28 AWS_DYNAMODB_API ListTablesRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "ListTables"; }
35
36 AWS_DYNAMODB_API Aws::String SerializePayload() const override;
37
39
40
42
47 inline const Aws::String& GetExclusiveStartTableName() const { return m_exclusiveStartTableName; }
48 inline bool ExclusiveStartTableNameHasBeenSet() const { return m_exclusiveStartTableNameHasBeenSet; }
49 template<typename ExclusiveStartTableNameT = Aws::String>
50 void SetExclusiveStartTableName(ExclusiveStartTableNameT&& value) { m_exclusiveStartTableNameHasBeenSet = true; m_exclusiveStartTableName = std::forward<ExclusiveStartTableNameT>(value); }
51 template<typename ExclusiveStartTableNameT = Aws::String>
52 ListTablesRequest& WithExclusiveStartTableName(ExclusiveStartTableNameT&& value) { SetExclusiveStartTableName(std::forward<ExclusiveStartTableNameT>(value)); return *this;}
54
56
60 inline int GetLimit() const { return m_limit; }
61 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
62 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
63 inline ListTablesRequest& WithLimit(int value) { SetLimit(value); return *this;}
65 private:
66
67 Aws::String m_exclusiveStartTableName;
68 bool m_exclusiveStartTableNameHasBeenSet = false;
69
70 int m_limit{0};
71 bool m_limitHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace DynamoDB
76} // namespace Aws
AWS_DYNAMODB_API Aws::String SerializePayload() const override
AWS_DYNAMODB_API ListTablesRequest()=default
const Aws::String & GetExclusiveStartTableName() const
virtual const char * GetServiceRequestName() const override
AWS_DYNAMODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListTablesRequest & WithExclusiveStartTableName(ExclusiveStartTableNameT &&value)
void SetExclusiveStartTableName(ExclusiveStartTableNameT &&value)
ListTablesRequest & WithLimit(int value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String