Skip to content

Describe Recipe

gluedatabrew_describe_recipe R Documentation

Returns the definition of a specific DataBrew recipe corresponding to a particular version

Description

Returns the definition of a specific DataBrew recipe corresponding to a particular version.

Usage

gluedatabrew_describe_recipe(Name, RecipeVersion)

Arguments

Name

[required] The name of the recipe to be described.

RecipeVersion

The recipe version identifier. If this parameter isn't specified, then the latest published version is returned.

Value

A list with the following syntax:

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",
  Steps = list(
    list(
      Action = list(
        Operation = "string",
        Parameters = list(
          "string"
        )
      ),
      ConditionExpressions = list(
        list(
          Condition = "string",
          Value = "string",
          TargetColumn = "string"
        )
      )
    )
  ),
  Tags = list(
    "string"
  ),
  ResourceArn = "string",
  RecipeVersion = "string"
)

Request syntax

svc$describe_recipe(
  Name = "string",
  RecipeVersion = "string"
)