Class: Aws::GlueDataBrew::Types::DeleteRecipeVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DeleteRecipeVersionRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/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
-
#name ⇒ String
The name of the recipe.
-
#recipe_version ⇒ String
The version of the recipe to be deleted.
Instance Attribute Details
#name ⇒ String
The name of the recipe.
1620 1621 1622 1623 1624 1625 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1620 class DeleteRecipeVersionRequest < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |
#recipe_version ⇒ String
The version of the recipe to be deleted. You can specify a numeric
versions (X.Y
) or LATEST_WORKING
. LATEST_PUBLISHED
is not
supported.
1620 1621 1622 1623 1624 1625 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1620 class DeleteRecipeVersionRequest < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |