/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a transformation and associated parameters that are used to apply
* a change to a DataBrew dataset. For more information, see Recipe
* actions reference.See Also:
AWS
* API Reference
The name of a valid DataBrew transformation to be performed on the data.
*/ inline const Aws::String& GetOperation() const{ return m_operation; } /** *The name of a valid DataBrew transformation to be performed on the data.
*/ inline bool OperationHasBeenSet() const { return m_operationHasBeenSet; } /** *The name of a valid DataBrew transformation to be performed on the data.
*/ inline void SetOperation(const Aws::String& value) { m_operationHasBeenSet = true; m_operation = value; } /** *The name of a valid DataBrew transformation to be performed on the data.
*/ inline void SetOperation(Aws::String&& value) { m_operationHasBeenSet = true; m_operation = std::move(value); } /** *The name of a valid DataBrew transformation to be performed on the data.
*/ inline void SetOperation(const char* value) { m_operationHasBeenSet = true; m_operation.assign(value); } /** *The name of a valid DataBrew transformation to be performed on the data.
*/ inline RecipeAction& WithOperation(const Aws::String& value) { SetOperation(value); return *this;} /** *The name of a valid DataBrew transformation to be performed on the data.
*/ inline RecipeAction& WithOperation(Aws::String&& value) { SetOperation(std::move(value)); return *this;} /** *The name of a valid DataBrew transformation to be performed on the data.
*/ inline RecipeAction& WithOperation(const char* value) { SetOperation(value); return *this;} /** *Contextual parameters for the transformation.
*/ inline const Aws::MapContextual parameters for the transformation.
*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *Contextual parameters for the transformation.
*/ inline void SetParameters(const Aws::MapContextual parameters for the transformation.
*/ inline void SetParameters(Aws::MapContextual parameters for the transformation.
*/ inline RecipeAction& WithParameters(const Aws::MapContextual parameters for the transformation.
*/ inline RecipeAction& WithParameters(Aws::MapContextual parameters for the transformation.
*/ inline RecipeAction& AddParameters(const Aws::String& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } /** *Contextual parameters for the transformation.
*/ inline RecipeAction& AddParameters(Aws::String&& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *Contextual parameters for the transformation.
*/ inline RecipeAction& AddParameters(const Aws::String& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *Contextual parameters for the transformation.
*/ inline RecipeAction& AddParameters(Aws::String&& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), std::move(value)); return *this; } /** *Contextual parameters for the transformation.
*/ inline RecipeAction& AddParameters(const char* key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *Contextual parameters for the transformation.
*/ inline RecipeAction& AddParameters(Aws::String&& key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *Contextual parameters for the transformation.
*/ inline RecipeAction& AddParameters(const char* key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } private: Aws::String m_operation; bool m_operationHasBeenSet = false; Aws::Map