List Recipes
| gluedatabrew_list_recipes | R Documentation |
Lists all of the DataBrew recipes that are defined¶
Description¶
Lists all of the DataBrew recipes that are defined.
Usage¶
Arguments¶
MaxResultsThe maximum number of results to return in this request.
NextTokenThe token returned by a previous call to retrieve the next set of results.
RecipeVersionReturn only those recipes with a version identifier of
LATEST_WORKINGorLATEST_PUBLISHED. IfRecipeVersionis omitted,list_recipesreturns all of theLATEST_PUBLISHEDrecipe versions.Valid values:
LATEST_WORKING|LATEST_PUBLISHED
Value¶
A list with the following syntax:
list(
Recipes = list(
list(
CreatedBy = "string",
CreateDate = as.POSIXct(
"2015-01-01"
),
LastModifiedBy = "string",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
ProjectName = "string",
PublishedBy = "string",
PublishedDate = as.POSIXct(
"2015-01-01"
),
Description = "string",
Name = "string",
ResourceArn = "string",
Steps = list(
list(
Action = list(
Operation = "string",
Parameters = list(
"string"
)
),
ConditionExpressions = list(
list(
Condition = "string",
Value = "string",
TargetColumn = "string"
)
)
)
),
Tags = list(
"string"
),
RecipeVersion = "string"
)
),
NextToken = "string"
)