Update Recipe
gluedatabrew_update_recipe | R Documentation |
Modifies the definition of the LATEST_WORKING version of a DataBrew recipe¶
Description¶
Modifies the definition of the LATEST_WORKING
version of a DataBrew
recipe.
Usage¶
gluedatabrew_update_recipe(Description, Name, Steps)
Arguments¶
Description |
A description of the recipe. |
Name |
[required] The name of the recipe to be updated. |
Steps |
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed. |
Value¶
A list with the following syntax:
list(
Name = "string"
)
Request syntax¶
svc$update_recipe(
Description = "string",
Name = "string",
Steps = list(
list(
Action = list(
Operation = "string",
Parameters = list(
"string"
)
),
ConditionExpressions = list(
list(
Condition = "string",
Value = "string",
TargetColumn = "string"
)
)
)
)
)