Class: Aws::GlueDataBrew::Types::DeleteRecipeVersionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gluedatabrew/types.rb

Overview

Note:

When making an API call, you may pass DeleteRecipeVersionRequest data as a hash:

{
  name: "RecipeName", # required
  recipe_version: "RecipeVersion", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the recipe.

Returns:

  • (String)


1620
1621
1622
1623
1624
1625
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 1620

class DeleteRecipeVersionRequest < Struct.new(
  :name,
  :recipe_version)
  SENSITIVE = []
  include Aws::Structure
end

#recipe_versionString

The version of the recipe to be deleted. You can specify a numeric versions (`X.Y`) or `LATEST_WORKING`. `LATEST_PUBLISHED` is not supported.

Returns:

  • (String)


1620
1621
1622
1623
1624
1625
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 1620

class DeleteRecipeVersionRequest < Struct.new(
  :name,
  :recipe_version)
  SENSITIVE = []
  include Aws::Structure
end