Class: Aws::GlueDataBrew::Types::ListRecipeVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ListRecipeVersionsRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass ListRecipeVersionsRequest data as a hash:
{
max_results: 1,
next_token: "NextToken",
name: "RecipeName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in this request.
-
#name ⇒ String
The name of the recipe for which to return version information.
-
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in this request.
3337 3338 3339 3340 3341 3342 3343 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3337 class ListRecipeVersionsRequest < Struct.new( :max_results, :next_token, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the recipe for which to return version information.
3337 3338 3339 3340 3341 3342 3343 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3337 class ListRecipeVersionsRequest < Struct.new( :max_results, :next_token, :name) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
3337 3338 3339 3340 3341 3342 3343 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3337 class ListRecipeVersionsRequest < Struct.new( :max_results, :next_token, :name) SENSITIVE = [] include Aws::Structure end |