/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a transform that renames a single data property key.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 RenameField& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the transform node.
*/ inline RenameField& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the transform node.
*/ inline RenameField& 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 RenameField& WithInputs(const Aws::VectorThe data inputs identified by their node names.
*/ inline RenameField& WithInputs(Aws::VectorThe data inputs identified by their node names.
*/ inline RenameField& AddInputs(const Aws::String& value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *The data inputs identified by their node names.
*/ inline RenameField& 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 RenameField& AddInputs(const char* value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *A JSON path to a variable in the data structure for the source data.
*/ inline const Aws::VectorA JSON path to a variable in the data structure for the source data.
*/ inline bool SourcePathHasBeenSet() const { return m_sourcePathHasBeenSet; } /** *A JSON path to a variable in the data structure for the source data.
*/ inline void SetSourcePath(const Aws::VectorA JSON path to a variable in the data structure for the source data.
*/ inline void SetSourcePath(Aws::VectorA JSON path to a variable in the data structure for the source data.
*/ inline RenameField& WithSourcePath(const Aws::VectorA JSON path to a variable in the data structure for the source data.
*/ inline RenameField& WithSourcePath(Aws::VectorA JSON path to a variable in the data structure for the source data.
*/ inline RenameField& AddSourcePath(const Aws::String& value) { m_sourcePathHasBeenSet = true; m_sourcePath.push_back(value); return *this; } /** *A JSON path to a variable in the data structure for the source data.
*/ inline RenameField& AddSourcePath(Aws::String&& value) { m_sourcePathHasBeenSet = true; m_sourcePath.push_back(std::move(value)); return *this; } /** *A JSON path to a variable in the data structure for the source data.
*/ inline RenameField& AddSourcePath(const char* value) { m_sourcePathHasBeenSet = true; m_sourcePath.push_back(value); return *this; } /** *A JSON path to a variable in the data structure for the target data.
*/ inline const Aws::VectorA JSON path to a variable in the data structure for the target data.
*/ inline bool TargetPathHasBeenSet() const { return m_targetPathHasBeenSet; } /** *A JSON path to a variable in the data structure for the target data.
*/ inline void SetTargetPath(const Aws::VectorA JSON path to a variable in the data structure for the target data.
*/ inline void SetTargetPath(Aws::VectorA JSON path to a variable in the data structure for the target data.
*/ inline RenameField& WithTargetPath(const Aws::VectorA JSON path to a variable in the data structure for the target data.
*/ inline RenameField& WithTargetPath(Aws::VectorA JSON path to a variable in the data structure for the target data.
*/ inline RenameField& AddTargetPath(const Aws::String& value) { m_targetPathHasBeenSet = true; m_targetPath.push_back(value); return *this; } /** *A JSON path to a variable in the data structure for the target data.
*/ inline RenameField& AddTargetPath(Aws::String&& value) { m_targetPathHasBeenSet = true; m_targetPath.push_back(std::move(value)); return *this; } /** *A JSON path to a variable in the data structure for the target data.
*/ inline RenameField& AddTargetPath(const char* value) { m_targetPathHasBeenSet = true; m_targetPath.push_back(value); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector