Class: Aws::GlueDataBrew::Types::RecipeReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::RecipeReference
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass RecipeReference data as a hash:
{
name: "RecipeName", # required
recipe_version: "RecipeVersion",
}
Represents the name and version of a DataBrew recipe.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the recipe.
-
#recipe_version ⇒ String
The identifier for the version for the recipe.
Instance Attribute Details
#name ⇒ String
The name of the recipe.
4086 4087 4088 4089 4090 4091 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 4086 class RecipeReference < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |
#recipe_version ⇒ String
The identifier for the version for the recipe.
4086 4087 4088 4089 4090 4091 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 4086 class RecipeReference < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |