AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ContributorInsightsSummary.h
1
6#pragma once
7#include <aws/dynamodb/DynamoDB_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/dynamodb/model/ContributorInsightsStatus.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace DynamoDB
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_DYNAMODB_API ContributorInsightsSummary() = default;
39 AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetTableName() const { return m_tableName; }
47 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
48 template<typename TableNameT = Aws::String>
49 void SetTableName(TableNameT&& value) { m_tableNameHasBeenSet = true; m_tableName = std::forward<TableNameT>(value); }
50 template<typename TableNameT = Aws::String>
51 ContributorInsightsSummary& WithTableName(TableNameT&& value) { SetTableName(std::forward<TableNameT>(value)); return *this;}
53
55
58 inline const Aws::String& GetIndexName() const { return m_indexName; }
59 inline bool IndexNameHasBeenSet() const { return m_indexNameHasBeenSet; }
60 template<typename IndexNameT = Aws::String>
61 void SetIndexName(IndexNameT&& value) { m_indexNameHasBeenSet = true; m_indexName = std::forward<IndexNameT>(value); }
62 template<typename IndexNameT = Aws::String>
63 ContributorInsightsSummary& WithIndexName(IndexNameT&& value) { SetIndexName(std::forward<IndexNameT>(value)); return *this;}
65
67
71 inline ContributorInsightsStatus GetContributorInsightsStatus() const { return m_contributorInsightsStatus; }
72 inline bool ContributorInsightsStatusHasBeenSet() const { return m_contributorInsightsStatusHasBeenSet; }
73 inline void SetContributorInsightsStatus(ContributorInsightsStatus value) { m_contributorInsightsStatusHasBeenSet = true; m_contributorInsightsStatus = value; }
76 private:
77
78 Aws::String m_tableName;
79 bool m_tableNameHasBeenSet = false;
80
81 Aws::String m_indexName;
82 bool m_indexNameHasBeenSet = false;
83
85 bool m_contributorInsightsStatusHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace DynamoDB
90} // namespace Aws
void SetContributorInsightsStatus(ContributorInsightsStatus value)
ContributorInsightsSummary & WithTableName(TableNameT &&value)
AWS_DYNAMODB_API ContributorInsightsSummary()=default
AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const
ContributorInsightsStatus GetContributorInsightsStatus() const
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