Class: Aws::GlueDataBrew::Types::RecipeReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::RecipeReference
- Defined in:
- gems/aws-sdk-gluedatabrew/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.
4095 4096 4097 4098 4099 4100 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4095 class RecipeReference < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |
#recipe_version ⇒ String
The identifier for the version for the recipe.
4095 4096 4097 4098 4099 4100 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4095 class RecipeReference < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |