Class: Aws::GlueDataBrew::Types::DeleteRecipeVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DeleteRecipeVersionRequest
- 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
-
#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.
1619 1620 1621 1622 1623 1624 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 1619 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.
1619 1620 1621 1622 1623 1624 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 1619 class DeleteRecipeVersionRequest < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |