AWS SDK for C++

AWS SDK for C++ Version 1.11.753

Loading...
Searching...
No Matches
TableFieldLinkContentConfiguration.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/TableFieldCustomIconContent.h>
9#include <aws/quicksight/model/TableFieldCustomTextContent.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace QuickSight {
21namespace Model {
22
30 public:
31 AWS_QUICKSIGHT_API TableFieldLinkContentConfiguration() = default;
34 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const TableFieldCustomTextContent& GetCustomTextContent() const { return m_customTextContent; }
42 inline bool CustomTextContentHasBeenSet() const { return m_customTextContentHasBeenSet; }
43 template <typename CustomTextContentT = TableFieldCustomTextContent>
44 void SetCustomTextContent(CustomTextContentT&& value) {
45 m_customTextContentHasBeenSet = true;
46 m_customTextContent = std::forward<CustomTextContentT>(value);
47 }
48 template <typename CustomTextContentT = TableFieldCustomTextContent>
50 SetCustomTextContent(std::forward<CustomTextContentT>(value));
51 return *this;
52 }
54
56
59 inline const TableFieldCustomIconContent& GetCustomIconContent() const { return m_customIconContent; }
60 inline bool CustomIconContentHasBeenSet() const { return m_customIconContentHasBeenSet; }
61 template <typename CustomIconContentT = TableFieldCustomIconContent>
62 void SetCustomIconContent(CustomIconContentT&& value) {
63 m_customIconContentHasBeenSet = true;
64 m_customIconContent = std::forward<CustomIconContentT>(value);
65 }
66 template <typename CustomIconContentT = TableFieldCustomIconContent>
68 SetCustomIconContent(std::forward<CustomIconContentT>(value));
69 return *this;
70 }
72 private:
73 TableFieldCustomTextContent m_customTextContent;
74
75 TableFieldCustomIconContent m_customIconContent;
76 bool m_customTextContentHasBeenSet = false;
77 bool m_customIconContentHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace QuickSight
82} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue