Class: Aws::GlueDataBrew::Types::BatchDeleteRecipeVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::BatchDeleteRecipeVersionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the recipe whose versions are to be deleted.
-
#recipe_versions ⇒ Array<String>
An array of version identifiers, for the recipe versions to be deleted.
Instance Attribute Details
#name ⇒ String
The name of the recipe whose versions are to be deleted.
55 56 57 58 59 60 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 55 class BatchDeleteRecipeVersionRequest < Struct.new( :name, :recipe_versions) SENSITIVE = [] include Aws::Structure end |
#recipe_versions ⇒ Array<String>
An array of version identifiers, for the recipe versions to be deleted. You can specify numeric versions (‘X.Y`) or `LATEST_WORKING`. `LATEST_PUBLISHED` is not supported.
55 56 57 58 59 60 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 55 class BatchDeleteRecipeVersionRequest < Struct.new( :name, :recipe_versions) SENSITIVE = [] include Aws::Structure end |