AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
DescribeTableRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dynamodb/DynamoDBRequest.h>
9#include <aws/dynamodb/DynamoDB_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace DynamoDB {
15namespace Model {
16
24 public:
25 AWS_DYNAMODB_API DescribeTableRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeTable"; }
32
33 AWS_DYNAMODB_API Aws::String SerializePayload() const override;
34
36
40 AWS_DYNAMODB_API EndpointParameters GetEndpointContextParams() const override;
41
43
47 inline const Aws::String& GetTableName() const { return m_tableName; }
48 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
49 template <typename TableNameT = Aws::String>
50 void SetTableName(TableNameT&& value) {
51 m_tableNameHasBeenSet = true;
52 m_tableName = std::forward<TableNameT>(value);
53 }
54 template <typename TableNameT = Aws::String>
55 DescribeTableRequest& WithTableName(TableNameT&& value) {
56 SetTableName(std::forward<TableNameT>(value));
57 return *this;
58 }
60 private:
61 Aws::String m_tableName;
62 bool m_tableNameHasBeenSet = false;
63};
64
65} // namespace Model
66} // namespace DynamoDB
67} // namespace Aws
Aws::Endpoint::EndpointParameters EndpointParameters
DescribeTableRequest & WithTableName(TableNameT &&value)
virtual const char * GetServiceRequestName() const override
AWS_DYNAMODB_API DescribeTableRequest()=default
AWS_DYNAMODB_API EndpointParameters GetEndpointContextParams() const override
AWS_DYNAMODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DYNAMODB_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String