/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Glue { namespace Model { /** *

A Glue Studio node that uses a Glue DataBrew recipe in Glue * jobs.

See Also:

AWS API * Reference

*/ class Recipe { public: AWS_GLUE_API Recipe(); AWS_GLUE_API Recipe(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API Recipe& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the Glue Studio node.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the Glue Studio node.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the Glue Studio node.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the Glue Studio node.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the Glue Studio node.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the Glue Studio node.

*/ inline Recipe& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the Glue Studio node.

*/ inline Recipe& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the Glue Studio node.

*/ inline Recipe& WithName(const char* value) { SetName(value); return *this;} /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline const Aws::Vector& GetInputs() const{ return m_inputs; } /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline bool InputsHasBeenSet() const { return m_inputsHasBeenSet; } /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline void SetInputs(const Aws::Vector& value) { m_inputsHasBeenSet = true; m_inputs = value; } /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline void SetInputs(Aws::Vector&& value) { m_inputsHasBeenSet = true; m_inputs = std::move(value); } /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline Recipe& WithInputs(const Aws::Vector& value) { SetInputs(value); return *this;} /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline Recipe& WithInputs(Aws::Vector&& value) { SetInputs(std::move(value)); return *this;} /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline Recipe& AddInputs(const Aws::String& value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline Recipe& AddInputs(Aws::String&& value) { m_inputsHasBeenSet = true; m_inputs.push_back(std::move(value)); return *this; } /** *

The nodes that are inputs to the recipe node, identified by id.

*/ inline Recipe& AddInputs(const char* value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *

A reference to the DataBrew recipe used by the node.

*/ inline const RecipeReference& GetRecipeReference() const{ return m_recipeReference; } /** *

A reference to the DataBrew recipe used by the node.

*/ inline bool RecipeReferenceHasBeenSet() const { return m_recipeReferenceHasBeenSet; } /** *

A reference to the DataBrew recipe used by the node.

*/ inline void SetRecipeReference(const RecipeReference& value) { m_recipeReferenceHasBeenSet = true; m_recipeReference = value; } /** *

A reference to the DataBrew recipe used by the node.

*/ inline void SetRecipeReference(RecipeReference&& value) { m_recipeReferenceHasBeenSet = true; m_recipeReference = std::move(value); } /** *

A reference to the DataBrew recipe used by the node.

*/ inline Recipe& WithRecipeReference(const RecipeReference& value) { SetRecipeReference(value); return *this;} /** *

A reference to the DataBrew recipe used by the node.

*/ inline Recipe& WithRecipeReference(RecipeReference&& value) { SetRecipeReference(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector m_inputs; bool m_inputsHasBeenSet = false; RecipeReference m_recipeReference; bool m_recipeReferenceHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws