AWS SDK for C++

AWS SDK for C++ Version 1.11.874

Loading...
Searching...
No Matches
ColumnIdentifier.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSight_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace QuickSight {
20namespace Model {
21
28 public:
29 AWS_QUICKSIGHT_API ColumnIdentifier() = default;
30 AWS_QUICKSIGHT_API ColumnIdentifier(Aws::Utils::Json::JsonView jsonValue);
32 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const Aws::String& GetDataSetIdentifier() const { return m_dataSetIdentifier; }
39 inline bool DataSetIdentifierHasBeenSet() const { return m_dataSetIdentifierHasBeenSet; }
40 template <typename DataSetIdentifierT = Aws::String>
41 void SetDataSetIdentifier(DataSetIdentifierT&& value) {
42 m_dataSetIdentifierHasBeenSet = true;
43 m_dataSetIdentifier = std::forward<DataSetIdentifierT>(value);
44 }
45 template <typename DataSetIdentifierT = Aws::String>
46 ColumnIdentifier& WithDataSetIdentifier(DataSetIdentifierT&& value) {
47 SetDataSetIdentifier(std::forward<DataSetIdentifierT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetTopicIdentifier() const { return m_topicIdentifier; }
57 inline bool TopicIdentifierHasBeenSet() const { return m_topicIdentifierHasBeenSet; }
58 template <typename TopicIdentifierT = Aws::String>
59 void SetTopicIdentifier(TopicIdentifierT&& value) {
60 m_topicIdentifierHasBeenSet = true;
61 m_topicIdentifier = std::forward<TopicIdentifierT>(value);
62 }
63 template <typename TopicIdentifierT = Aws::String>
64 ColumnIdentifier& WithTopicIdentifier(TopicIdentifierT&& value) {
65 SetTopicIdentifier(std::forward<TopicIdentifierT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetColumnName() const { return m_columnName; }
75 inline bool ColumnNameHasBeenSet() const { return m_columnNameHasBeenSet; }
76 template <typename ColumnNameT = Aws::String>
77 void SetColumnName(ColumnNameT&& value) {
78 m_columnNameHasBeenSet = true;
79 m_columnName = std::forward<ColumnNameT>(value);
80 }
81 template <typename ColumnNameT = Aws::String>
82 ColumnIdentifier& WithColumnName(ColumnNameT&& value) {
83 SetColumnName(std::forward<ColumnNameT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_dataSetIdentifier;
89
90 Aws::String m_topicIdentifier;
91
92 Aws::String m_columnName;
93 bool m_dataSetIdentifierHasBeenSet = false;
94 bool m_topicIdentifierHasBeenSet = false;
95 bool m_columnNameHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace QuickSight
100} // namespace Aws
void SetTopicIdentifier(TopicIdentifierT &&value)
AWS_QUICKSIGHT_API ColumnIdentifier()=default
ColumnIdentifier & WithDataSetIdentifier(DataSetIdentifierT &&value)
ColumnIdentifier & WithTopicIdentifier(TopicIdentifierT &&value)
const Aws::String & GetDataSetIdentifier() const
AWS_QUICKSIGHT_API ColumnIdentifier(Aws::Utils::Json::JsonView jsonValue)
void SetDataSetIdentifier(DataSetIdentifierT &&value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetTopicIdentifier() const
AWS_QUICKSIGHT_API ColumnIdentifier & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetColumnName() const
ColumnIdentifier & WithColumnName(ColumnNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue