/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a transform that joins two datasets into one dataset using a
* comparison phrase on the specified data property keys. You can use inner, outer,
* left, right, left semi, and left anti joins.See Also:
AWS API
* Reference
The name of the transform node.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the transform node.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the transform node.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the transform node.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the transform node.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the transform node.
*/ inline Join& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the transform node.
*/ inline Join& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the transform node.
*/ inline Join& WithName(const char* value) { SetName(value); return *this;} /** *The data inputs identified by their node names.
*/ inline const Aws::VectorThe data inputs identified by their node names.
*/ inline bool InputsHasBeenSet() const { return m_inputsHasBeenSet; } /** *The data inputs identified by their node names.
*/ inline void SetInputs(const Aws::VectorThe data inputs identified by their node names.
*/ inline void SetInputs(Aws::VectorThe data inputs identified by their node names.
*/ inline Join& WithInputs(const Aws::VectorThe data inputs identified by their node names.
*/ inline Join& WithInputs(Aws::VectorThe data inputs identified by their node names.
*/ inline Join& AddInputs(const Aws::String& value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *The data inputs identified by their node names.
*/ inline Join& AddInputs(Aws::String&& value) { m_inputsHasBeenSet = true; m_inputs.push_back(std::move(value)); return *this; } /** *The data inputs identified by their node names.
*/ inline Join& AddInputs(const char* value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *Specifies the type of join to be performed on the datasets.
*/ inline const JoinType& GetJoinType() const{ return m_joinType; } /** *Specifies the type of join to be performed on the datasets.
*/ inline bool JoinTypeHasBeenSet() const { return m_joinTypeHasBeenSet; } /** *Specifies the type of join to be performed on the datasets.
*/ inline void SetJoinType(const JoinType& value) { m_joinTypeHasBeenSet = true; m_joinType = value; } /** *Specifies the type of join to be performed on the datasets.
*/ inline void SetJoinType(JoinType&& value) { m_joinTypeHasBeenSet = true; m_joinType = std::move(value); } /** *Specifies the type of join to be performed on the datasets.
*/ inline Join& WithJoinType(const JoinType& value) { SetJoinType(value); return *this;} /** *Specifies the type of join to be performed on the datasets.
*/ inline Join& WithJoinType(JoinType&& value) { SetJoinType(std::move(value)); return *this;} /** *A list of the two columns to be joined.
*/ inline const Aws::VectorA list of the two columns to be joined.
*/ inline bool ColumnsHasBeenSet() const { return m_columnsHasBeenSet; } /** *A list of the two columns to be joined.
*/ inline void SetColumns(const Aws::VectorA list of the two columns to be joined.
*/ inline void SetColumns(Aws::VectorA list of the two columns to be joined.
*/ inline Join& WithColumns(const Aws::VectorA list of the two columns to be joined.
*/ inline Join& WithColumns(Aws::VectorA list of the two columns to be joined.
*/ inline Join& AddColumns(const JoinColumn& value) { m_columnsHasBeenSet = true; m_columns.push_back(value); return *this; } /** *A list of the two columns to be joined.
*/ inline Join& AddColumns(JoinColumn&& value) { m_columnsHasBeenSet = true; m_columns.push_back(std::move(value)); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector