AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
TableFieldLinkConfiguration.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/URLTargetConfiguration.h>
9#include <aws/quicksight/model/TableFieldLinkContentConfiguration.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
33 {
34 public:
35 AWS_QUICKSIGHT_API TableFieldLinkConfiguration() = default;
38 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline URLTargetConfiguration GetTarget() const { return m_target; }
47 inline bool TargetHasBeenSet() const { return m_targetHasBeenSet; }
48 inline void SetTarget(URLTargetConfiguration value) { m_targetHasBeenSet = true; m_target = value; }
51
53
56 inline const TableFieldLinkContentConfiguration& GetContent() const { return m_content; }
57 inline bool ContentHasBeenSet() const { return m_contentHasBeenSet; }
58 template<typename ContentT = TableFieldLinkContentConfiguration>
59 void SetContent(ContentT&& value) { m_contentHasBeenSet = true; m_content = std::forward<ContentT>(value); }
60 template<typename ContentT = TableFieldLinkContentConfiguration>
61 TableFieldLinkConfiguration& WithContent(ContentT&& value) { SetContent(std::forward<ContentT>(value)); return *this;}
63 private:
64
66 bool m_targetHasBeenSet = false;
67
68 TableFieldLinkContentConfiguration m_content;
69 bool m_contentHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace QuickSight
74} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue