AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
TableFieldLinkContentConfiguration.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/TableFieldCustomTextContent.h>
9#include <aws/quicksight/model/TableFieldCustomIconContent.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 QuickSight
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_QUICKSIGHT_API TableFieldLinkContentConfiguration() = default;
39 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const TableFieldCustomTextContent& GetCustomTextContent() const { return m_customTextContent; }
48 inline bool CustomTextContentHasBeenSet() const { return m_customTextContentHasBeenSet; }
49 template<typename CustomTextContentT = TableFieldCustomTextContent>
50 void SetCustomTextContent(CustomTextContentT&& value) { m_customTextContentHasBeenSet = true; m_customTextContent = std::forward<CustomTextContentT>(value); }
51 template<typename CustomTextContentT = TableFieldCustomTextContent>
52 TableFieldLinkContentConfiguration& WithCustomTextContent(CustomTextContentT&& value) { SetCustomTextContent(std::forward<CustomTextContentT>(value)); return *this;}
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) { m_customIconContentHasBeenSet = true; m_customIconContent = std::forward<CustomIconContentT>(value); }
63 template<typename CustomIconContentT = TableFieldCustomIconContent>
64 TableFieldLinkContentConfiguration& WithCustomIconContent(CustomIconContentT&& value) { SetCustomIconContent(std::forward<CustomIconContentT>(value)); return *this;}
66 private:
67
68 TableFieldCustomTextContent m_customTextContent;
69 bool m_customTextContentHasBeenSet = false;
70
71 TableFieldCustomIconContent m_customIconContent;
72 bool m_customIconContentHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace QuickSight
77} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue