AWS SDK for C++

AWS SDK for C++ Version 1.11.755

Loading...
Searching...
No Matches
ContributorInsightsSummary.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dynamodb/DynamoDB_EXPORTS.h>
9#include <aws/dynamodb/model/ContributorInsightsMode.h>
10#include <aws/dynamodb/model/ContributorInsightsStatus.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace DynamoDB {
22namespace Model {
23
31 public:
32 AWS_DYNAMODB_API ContributorInsightsSummary() = default;
35 AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetTableName() const { return m_tableName; }
42 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
43 template <typename TableNameT = Aws::String>
44 void SetTableName(TableNameT&& value) {
45 m_tableNameHasBeenSet = true;
46 m_tableName = std::forward<TableNameT>(value);
47 }
48 template <typename TableNameT = Aws::String>
50 SetTableName(std::forward<TableNameT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetIndexName() const { return m_indexName; }
60 inline bool IndexNameHasBeenSet() const { return m_indexNameHasBeenSet; }
61 template <typename IndexNameT = Aws::String>
62 void SetIndexName(IndexNameT&& value) {
63 m_indexNameHasBeenSet = true;
64 m_indexName = std::forward<IndexNameT>(value);
65 }
66 template <typename IndexNameT = Aws::String>
68 SetIndexName(std::forward<IndexNameT>(value));
69 return *this;
70 }
72
74
78 inline ContributorInsightsStatus GetContributorInsightsStatus() const { return m_contributorInsightsStatus; }
79 inline bool ContributorInsightsStatusHasBeenSet() const { return m_contributorInsightsStatusHasBeenSet; }
81 m_contributorInsightsStatusHasBeenSet = true;
82 m_contributorInsightsStatus = value;
83 }
86 return *this;
87 }
89
91
96 inline ContributorInsightsMode GetContributorInsightsMode() const { return m_contributorInsightsMode; }
97 inline bool ContributorInsightsModeHasBeenSet() const { return m_contributorInsightsModeHasBeenSet; }
99 m_contributorInsightsModeHasBeenSet = true;
100 m_contributorInsightsMode = value;
101 }
104 return *this;
105 }
107 private:
108 Aws::String m_tableName;
109
110 Aws::String m_indexName;
111
113
115 bool m_tableNameHasBeenSet = false;
116 bool m_indexNameHasBeenSet = false;
117 bool m_contributorInsightsStatusHasBeenSet = false;
118 bool m_contributorInsightsModeHasBeenSet = false;
119};
120
121} // namespace Model
122} // namespace DynamoDB
123} // namespace Aws
void SetContributorInsightsStatus(ContributorInsightsStatus value)
ContributorInsightsSummary & WithTableName(TableNameT &&value)
AWS_DYNAMODB_API ContributorInsightsSummary()=default
AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const
ContributorInsightsSummary & WithContributorInsightsMode(ContributorInsightsMode value)
ContributorInsightsStatus GetContributorInsightsStatus() const
void SetContributorInsightsMode(ContributorInsightsMode value)
AWS_DYNAMODB_API ContributorInsightsSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
ContributorInsightsSummary & WithContributorInsightsStatus(ContributorInsightsStatus value)
AWS_DYNAMODB_API ContributorInsightsSummary(Aws::Utils::Json::JsonView jsonValue)
ContributorInsightsSummary & WithIndexName(IndexNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue