AWS SDK for C++

AWS SDK for C++ Version 1.11.756

Loading...
Searching...
No Matches
GetTableMaintenanceConfigurationResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSMap.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/s3tables/S3Tables_EXPORTS.h>
10#include <aws/s3tables/model/TableMaintenanceConfigurationValue.h>
11#include <aws/s3tables/model/TableMaintenanceType.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Json {
21class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace S3Tables {
25namespace Model {
27 public:
28 AWS_S3TABLES_API GetTableMaintenanceConfigurationResult() = default;
32
34
37 inline const Aws::String& GetTableARN() const { return m_tableARN; }
38 template <typename TableARNT = Aws::String>
39 void SetTableARN(TableARNT&& value) {
40 m_tableARNHasBeenSet = true;
41 m_tableARN = std::forward<TableARNT>(value);
42 }
43 template <typename TableARNT = Aws::String>
45 SetTableARN(std::forward<TableARNT>(value));
46 return *this;
47 }
49
51
55 template <typename ConfigurationT = Aws::Map<TableMaintenanceType, TableMaintenanceConfigurationValue>>
56 void SetConfiguration(ConfigurationT&& value) {
57 m_configurationHasBeenSet = true;
58 m_configuration = std::forward<ConfigurationT>(value);
59 }
60 template <typename ConfigurationT = Aws::Map<TableMaintenanceType, TableMaintenanceConfigurationValue>>
62 SetConfiguration(std::forward<ConfigurationT>(value));
63 return *this;
64 }
66 m_configurationHasBeenSet = true;
67 m_configuration.emplace(key, value);
68 return *this;
69 }
71
73
74 inline const Aws::String& GetRequestId() const { return m_requestId; }
75 template <typename RequestIdT = Aws::String>
76 void SetRequestId(RequestIdT&& value) {
77 m_requestIdHasBeenSet = true;
78 m_requestId = std::forward<RequestIdT>(value);
79 }
80 template <typename RequestIdT = Aws::String>
82 SetRequestId(std::forward<RequestIdT>(value));
83 return *this;
84 }
86 private:
87 Aws::String m_tableARN;
88
90
91 Aws::String m_requestId;
92 bool m_tableARNHasBeenSet = false;
93 bool m_configurationHasBeenSet = false;
94 bool m_requestIdHasBeenSet = false;
95};
96
97} // namespace Model
98} // namespace S3Tables
99} // namespace Aws
GetTableMaintenanceConfigurationResult & AddConfiguration(TableMaintenanceType key, TableMaintenanceConfigurationValue value)
AWS_S3TABLES_API GetTableMaintenanceConfigurationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_S3TABLES_API GetTableMaintenanceConfigurationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetTableMaintenanceConfigurationResult & WithConfiguration(ConfigurationT &&value)
GetTableMaintenanceConfigurationResult & WithRequestId(RequestIdT &&value)
const Aws::Map< TableMaintenanceType, TableMaintenanceConfigurationValue > & GetConfiguration() const
GetTableMaintenanceConfigurationResult & WithTableARN(TableARNT &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue