This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-quicksight/include/aws/quicksight/model/LogicalTableSource.h

126 lines
3.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/quicksight/QuickSight_EXPORTS.h>
#include <aws/quicksight/model/JoinInstruction.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace QuickSight
{
namespace Model
{
/**
* <p>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.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LogicalTableSource">AWS
* API Reference</a></p>
*/
class AWS_QUICKSIGHT_API LogicalTableSource
{
public:
LogicalTableSource();
LogicalTableSource(Aws::Utils::Json::JsonView jsonValue);
LogicalTableSource& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Specifies the result of a join of two logical tables.</p>
*/
inline const JoinInstruction& GetJoinInstruction() const{ return m_joinInstruction; }
/**
* <p>Specifies the result of a join of two logical tables.</p>
*/
inline bool JoinInstructionHasBeenSet() const { return m_joinInstructionHasBeenSet; }
/**
* <p>Specifies the result of a join of two logical tables.</p>
*/
inline void SetJoinInstruction(const JoinInstruction& value) { m_joinInstructionHasBeenSet = true; m_joinInstruction = value; }
/**
* <p>Specifies the result of a join of two logical tables.</p>
*/
inline void SetJoinInstruction(JoinInstruction&& value) { m_joinInstructionHasBeenSet = true; m_joinInstruction = std::move(value); }
/**
* <p>Specifies the result of a join of two logical tables.</p>
*/
inline LogicalTableSource& WithJoinInstruction(const JoinInstruction& value) { SetJoinInstruction(value); return *this;}
/**
* <p>Specifies the result of a join of two logical tables.</p>
*/
inline LogicalTableSource& WithJoinInstruction(JoinInstruction&& value) { SetJoinInstruction(std::move(value)); return *this;}
/**
* <p>Physical table ID.</p>
*/
inline const Aws::String& GetPhysicalTableId() const{ return m_physicalTableId; }
/**
* <p>Physical table ID.</p>
*/
inline bool PhysicalTableIdHasBeenSet() const { return m_physicalTableIdHasBeenSet; }
/**
* <p>Physical table ID.</p>
*/
inline void SetPhysicalTableId(const Aws::String& value) { m_physicalTableIdHasBeenSet = true; m_physicalTableId = value; }
/**
* <p>Physical table ID.</p>
*/
inline void SetPhysicalTableId(Aws::String&& value) { m_physicalTableIdHasBeenSet = true; m_physicalTableId = std::move(value); }
/**
* <p>Physical table ID.</p>
*/
inline void SetPhysicalTableId(const char* value) { m_physicalTableIdHasBeenSet = true; m_physicalTableId.assign(value); }
/**
* <p>Physical table ID.</p>
*/
inline LogicalTableSource& WithPhysicalTableId(const Aws::String& value) { SetPhysicalTableId(value); return *this;}
/**
* <p>Physical table ID.</p>
*/
inline LogicalTableSource& WithPhysicalTableId(Aws::String&& value) { SetPhysicalTableId(std::move(value)); return *this;}
/**
* <p>Physical table ID.</p>
*/
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