AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; }
49 inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); }
50 inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); }
51 inline ContributorInsightsSummary& WithTableName(const Aws::String& value) { SetTableName(value); return *this;}
52 inline ContributorInsightsSummary& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;}
53 inline ContributorInsightsSummary& WithTableName(const char* value) { SetTableName(value); return *this;}
55
57
60 inline const Aws::String& GetIndexName() const{ return m_indexName; }
61 inline bool IndexNameHasBeenSet() const { return m_indexNameHasBeenSet; }
62 inline void SetIndexName(const Aws::String& value) { m_indexNameHasBeenSet = true; m_indexName = value; }
63 inline void SetIndexName(Aws::String&& value) { m_indexNameHasBeenSet = true; m_indexName = std::move(value); }
64 inline void SetIndexName(const char* value) { m_indexNameHasBeenSet = true; m_indexName.assign(value); }
65 inline ContributorInsightsSummary& WithIndexName(const Aws::String& value) { SetIndexName(value); return *this;}
66 inline ContributorInsightsSummary& WithIndexName(Aws::String&& value) { SetIndexName(std::move(value)); return *this;}
67 inline ContributorInsightsSummary& WithIndexName(const char* value) { SetIndexName(value); return *this;}
69
71
75 inline const ContributorInsightsStatus& GetContributorInsightsStatus() const{ return m_contributorInsightsStatus; }
76 inline bool ContributorInsightsStatusHasBeenSet() const { return m_contributorInsightsStatusHasBeenSet; }
77 inline void SetContributorInsightsStatus(const ContributorInsightsStatus& value) { m_contributorInsightsStatusHasBeenSet = true; m_contributorInsightsStatus = value; }
78 inline void SetContributorInsightsStatus(ContributorInsightsStatus&& value) { m_contributorInsightsStatusHasBeenSet = true; m_contributorInsightsStatus = std::move(value); }
82 private:
83
84 Aws::String m_tableName;
85 bool m_tableNameHasBeenSet = false;
86
87 Aws::String m_indexName;
88 bool m_indexNameHasBeenSet = false;
89
90 ContributorInsightsStatus m_contributorInsightsStatus;
91 bool m_contributorInsightsStatusHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace DynamoDB
96} // namespace Aws
ContributorInsightsSummary & WithTableName(const Aws::String &value)
ContributorInsightsSummary & WithIndexName(const char *value)
ContributorInsightsSummary & WithTableName(Aws::String &&value)
AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const
ContributorInsightsSummary & WithIndexName(Aws::String &&value)
ContributorInsightsSummary & WithContributorInsightsStatus(ContributorInsightsStatus &&value)
AWS_DYNAMODB_API ContributorInsightsSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetContributorInsightsStatus(const ContributorInsightsStatus &value)
void SetContributorInsightsStatus(ContributorInsightsStatus &&value)
const ContributorInsightsStatus & GetContributorInsightsStatus() const
ContributorInsightsSummary & WithTableName(const char *value)
AWS_DYNAMODB_API ContributorInsightsSummary(Aws::Utils::Json::JsonView jsonValue)
ContributorInsightsSummary & WithContributorInsightsStatus(const ContributorInsightsStatus &value)
ContributorInsightsSummary & WithIndexName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue