Create Recipe
gluedatabrew_create_recipe | R Documentation |
Creates a new DataBrew recipe¶
Description¶
Creates a new DataBrew recipe.
Usage¶
gluedatabrew_create_recipe(Description, Name, Steps, Tags)
Arguments¶
Description |
A description for the recipe. |
Name |
[required] A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space. |
Steps |
[required] An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions. |
Tags |
Metadata tags to apply to this recipe. |
Value¶
A list with the following syntax:
list(
Name = "string"
)
Request syntax¶
svc$create_recipe(
Description = "string",
Name = "string",
Steps = list(
list(
Action = list(
Operation = "string",
Parameters = list(
"string"
)
),
ConditionExpressions = list(
list(
Condition = "string",
Value = "string",
TargetColumn = "string"
)
)
)
),
Tags = list(
"string"
)
)