AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
LogicalTableSource.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSight_EXPORTS.h>
9#include <aws/quicksight/model/JoinInstruction.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
31 public:
32 AWS_QUICKSIGHT_API LogicalTableSource() = default;
33 AWS_QUICKSIGHT_API LogicalTableSource(Aws::Utils::Json::JsonView jsonValue);
35 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const JoinInstruction& GetJoinInstruction() const { return m_joinInstruction; }
42 inline bool JoinInstructionHasBeenSet() const { return m_joinInstructionHasBeenSet; }
43 template <typename JoinInstructionT = JoinInstruction>
44 void SetJoinInstruction(JoinInstructionT&& value) {
45 m_joinInstructionHasBeenSet = true;
46 m_joinInstruction = std::forward<JoinInstructionT>(value);
47 }
48 template <typename JoinInstructionT = JoinInstruction>
49 LogicalTableSource& WithJoinInstruction(JoinInstructionT&& value) {
50 SetJoinInstruction(std::forward<JoinInstructionT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetPhysicalTableId() const { return m_physicalTableId; }
60 inline bool PhysicalTableIdHasBeenSet() const { return m_physicalTableIdHasBeenSet; }
61 template <typename PhysicalTableIdT = Aws::String>
62 void SetPhysicalTableId(PhysicalTableIdT&& value) {
63 m_physicalTableIdHasBeenSet = true;
64 m_physicalTableId = std::forward<PhysicalTableIdT>(value);
65 }
66 template <typename PhysicalTableIdT = Aws::String>
67 LogicalTableSource& WithPhysicalTableId(PhysicalTableIdT&& value) {
68 SetPhysicalTableId(std::forward<PhysicalTableIdT>(value));
69 return *this;
70 }
72
74
77 inline const Aws::String& GetDataSetArn() const { return m_dataSetArn; }
78 inline bool DataSetArnHasBeenSet() const { return m_dataSetArnHasBeenSet; }
79 template <typename DataSetArnT = Aws::String>
80 void SetDataSetArn(DataSetArnT&& value) {
81 m_dataSetArnHasBeenSet = true;
82 m_dataSetArn = std::forward<DataSetArnT>(value);
83 }
84 template <typename DataSetArnT = Aws::String>
85 LogicalTableSource& WithDataSetArn(DataSetArnT&& value) {
86 SetDataSetArn(std::forward<DataSetArnT>(value));
87 return *this;
88 }
90 private:
91 JoinInstruction m_joinInstruction;
92
93 Aws::String m_physicalTableId;
94
95 Aws::String m_dataSetArn;
96 bool m_joinInstructionHasBeenSet = false;
97 bool m_physicalTableIdHasBeenSet = false;
98 bool m_dataSetArnHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace QuickSight
103} // namespace Aws
LogicalTableSource & WithJoinInstruction(JoinInstructionT &&value)
void SetJoinInstruction(JoinInstructionT &&value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API LogicalTableSource(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetPhysicalTableId() const
void SetPhysicalTableId(PhysicalTableIdT &&value)
AWS_QUICKSIGHT_API LogicalTableSource & operator=(Aws::Utils::Json::JsonView jsonValue)
const JoinInstruction & GetJoinInstruction() const
LogicalTableSource & WithPhysicalTableId(PhysicalTableIdT &&value)
AWS_QUICKSIGHT_API LogicalTableSource()=default
LogicalTableSource & WithDataSetArn(DataSetArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue