Class: Aws::GlueDataBrew::Types::BatchDeleteRecipeVersionRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the recipe whose versions are to be deleted.

Returns:

  • (String)


55
56
57
58
59
60
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 55

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

#recipe_versionsArray<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.

Returns:

  • (Array<String>)


55
56
57
58
59
60
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 55

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