/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a transform that maps data property keys in the data source to data
* property keys in the data target. You can rename keys, modify the data types for
* keys, and choose which keys to drop from the dataset.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 ApplyMapping& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the transform node.
*/ inline ApplyMapping& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the transform node.
*/ inline ApplyMapping& 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 ApplyMapping& WithInputs(const Aws::VectorThe data inputs identified by their node names.
*/ inline ApplyMapping& WithInputs(Aws::VectorThe data inputs identified by their node names.
*/ inline ApplyMapping& AddInputs(const Aws::String& value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *The data inputs identified by their node names.
*/ inline ApplyMapping& 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 ApplyMapping& AddInputs(const char* value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *Specifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline const Aws::VectorSpecifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline bool MappingHasBeenSet() const { return m_mappingHasBeenSet; } /** *Specifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline void SetMapping(const Aws::VectorSpecifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline void SetMapping(Aws::VectorSpecifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline ApplyMapping& WithMapping(const Aws::VectorSpecifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline ApplyMapping& WithMapping(Aws::VectorSpecifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline ApplyMapping& AddMapping(const Mapping& value) { m_mappingHasBeenSet = true; m_mapping.push_back(value); return *this; } /** *Specifies the mapping of data property keys in the data source to data * property keys in the data target.
*/ inline ApplyMapping& AddMapping(Mapping&& value) { m_mappingHasBeenSet = true; m_mapping.push_back(std::move(value)); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector