Skip to content

List Recipe Versions

gluedatabrew_list_recipe_versions R Documentation

Lists the versions of a particular DataBrew recipe, except for LATEST_WORKING

Description

Lists the versions of a particular DataBrew recipe, except for LATEST_WORKING.

Usage

gluedatabrew_list_recipe_versions(MaxResults, NextToken, Name)

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.

Name

[required] The name of the recipe for which to return version information.

Value

A list with the following syntax:

list(
  NextToken = "string",
  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"
    )
  )
)

Request syntax

svc$list_recipe_versions(
  MaxResults = 123,
  NextToken = "string",
  Name = "string"
)