Class: Aws::GlueDataBrew::Types::DescribeRecipeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DescribeRecipeRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass DescribeRecipeRequest data as a hash:
{
name: "RecipeName", # required
recipe_version: "RecipeVersion",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the recipe to be described.
-
#recipe_version ⇒ String
The recipe version identifier.
Instance Attribute Details
#name ⇒ String
The name of the recipe to be described.
2232 2233 2234 2235 2236 2237 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2232 class DescribeRecipeRequest < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |
#recipe_version ⇒ String
The recipe version identifier. If this parameter isn't specified, then the latest published version is returned.
2232 2233 2234 2235 2236 2237 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2232 class DescribeRecipeRequest < Struct.new( :name, :recipe_version) SENSITIVE = [] include Aws::Structure end |