/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the source of a logical table. This is a variant type
* structure. For this structure to be valid, only one of the attributes can be
* non-null.See Also:
AWS
* API Reference
Specifies the result of a join of two logical tables.
*/ inline const JoinInstruction& GetJoinInstruction() const{ return m_joinInstruction; } /** *Specifies the result of a join of two logical tables.
*/ inline bool JoinInstructionHasBeenSet() const { return m_joinInstructionHasBeenSet; } /** *Specifies the result of a join of two logical tables.
*/ inline void SetJoinInstruction(const JoinInstruction& value) { m_joinInstructionHasBeenSet = true; m_joinInstruction = value; } /** *Specifies the result of a join of two logical tables.
*/ inline void SetJoinInstruction(JoinInstruction&& value) { m_joinInstructionHasBeenSet = true; m_joinInstruction = std::move(value); } /** *Specifies the result of a join of two logical tables.
*/ inline LogicalTableSource& WithJoinInstruction(const JoinInstruction& value) { SetJoinInstruction(value); return *this;} /** *Specifies the result of a join of two logical tables.
*/ inline LogicalTableSource& WithJoinInstruction(JoinInstruction&& value) { SetJoinInstruction(std::move(value)); return *this;} /** *Physical table ID.
*/ inline const Aws::String& GetPhysicalTableId() const{ return m_physicalTableId; } /** *Physical table ID.
*/ inline bool PhysicalTableIdHasBeenSet() const { return m_physicalTableIdHasBeenSet; } /** *Physical table ID.
*/ inline void SetPhysicalTableId(const Aws::String& value) { m_physicalTableIdHasBeenSet = true; m_physicalTableId = value; } /** *Physical table ID.
*/ inline void SetPhysicalTableId(Aws::String&& value) { m_physicalTableIdHasBeenSet = true; m_physicalTableId = std::move(value); } /** *Physical table ID.
*/ inline void SetPhysicalTableId(const char* value) { m_physicalTableIdHasBeenSet = true; m_physicalTableId.assign(value); } /** *Physical table ID.
*/ inline LogicalTableSource& WithPhysicalTableId(const Aws::String& value) { SetPhysicalTableId(value); return *this;} /** *Physical table ID.
*/ inline LogicalTableSource& WithPhysicalTableId(Aws::String&& value) { SetPhysicalTableId(std::move(value)); return *this;} /** *Physical table ID.
*/ inline LogicalTableSource& WithPhysicalTableId(const char* value) { SetPhysicalTableId(value); return *this;} private: JoinInstruction m_joinInstruction; bool m_joinInstructionHasBeenSet; Aws::String m_physicalTableId; bool m_physicalTableIdHasBeenSet; }; } // namespace Model } // namespace QuickSight } // namespace Aws