Class: Aws::GlueDataBrew::Types::ListRecipesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ListRecipesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in this request.
-
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
-
#recipe_version ⇒ String
Return only those recipes with a version identifier of ‘LATEST_WORKING` or `LATEST_PUBLISHED`.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in this request.
2622 2623 2624 2625 2626 2627 2628 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2622 class ListRecipesRequest < Struct.new( :max_results, :next_token, :recipe_version) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
2622 2623 2624 2625 2626 2627 2628 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2622 class ListRecipesRequest < Struct.new( :max_results, :next_token, :recipe_version) SENSITIVE = [] include Aws::Structure end |
#recipe_version ⇒ String
Return only those recipes with a version identifier of ‘LATEST_WORKING` or `LATEST_PUBLISHED`. If `RecipeVersion` is omitted, `ListRecipes` returns all of the `LATEST_PUBLISHED` recipe versions.
Valid values: ‘LATEST_WORKING` | `LATEST_PUBLISHED`
2622 2623 2624 2625 2626 2627 2628 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2622 class ListRecipesRequest < Struct.new( :max_results, :next_token, :recipe_version) SENSITIVE = [] include Aws::Structure end |