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¶
MaxResults
The maximum number of results to return in this request.
NextToken
The token returned by a previous call to retrieve the next set of results.
RecipeVersion
Return only those recipes with a version identifier of
LATEST_WORKING
orLATEST_PUBLISHED
. IfRecipeVersion
is omitted,list_recipes
returns all of theLATEST_PUBLISHED
recipe 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"
)