AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetExclusiveStartTableName(const Aws::String& value) { m_exclusiveStartTableNameHasBeenSet = true; m_exclusiveStartTableName = value; }
50 inline void SetExclusiveStartTableName(Aws::String&& value) { m_exclusiveStartTableNameHasBeenSet = true; m_exclusiveStartTableName = std::move(value); }
51 inline void SetExclusiveStartTableName(const char* value) { m_exclusiveStartTableNameHasBeenSet = true; m_exclusiveStartTableName.assign(value); }
53 inline ListTablesRequest& WithExclusiveStartTableName(Aws::String&& value) { SetExclusiveStartTableName(std::move(value)); return *this;}
54 inline ListTablesRequest& WithExclusiveStartTableName(const char* value) { SetExclusiveStartTableName(value); return *this;}
56
58
62 inline int GetLimit() const{ return m_limit; }
63 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
64 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
65 inline ListTablesRequest& WithLimit(int value) { SetLimit(value); return *this;}
67 private:
68
69 Aws::String m_exclusiveStartTableName;
70 bool m_exclusiveStartTableNameHasBeenSet = false;
71
72 int m_limit;
73 bool m_limitHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace DynamoDB
78} // namespace Aws
void SetExclusiveStartTableName(Aws::String &&value)
ListTablesRequest & WithExclusiveStartTableName(const Aws::String &value)
ListTablesRequest & WithExclusiveStartTableName(Aws::String &&value)
void SetExclusiveStartTableName(const char *value)
ListTablesRequest & WithExclusiveStartTableName(const char *value)
AWS_DYNAMODB_API Aws::String SerializePayload() const override
const Aws::String & GetExclusiveStartTableName() const
virtual const char * GetServiceRequestName() const override
void SetExclusiveStartTableName(const Aws::String &value)
AWS_DYNAMODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListTablesRequest & WithLimit(int value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String