AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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