Class: Aws::Personalize::Types::ListRecipesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

Note:

When making an API call, you may pass ListRecipesRequest data as a hash:

{
  recipe_provider: "SERVICE", # accepts SERVICE
  next_token: "NextToken",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of recipes to return.

Returns:

  • (Integer)


3269
3270
3271
3272
3273
3274
3275
# File 'lib/aws-sdk-personalize/types.rb', line 3269

class ListRecipesRequest < Struct.new(
  :recipe_provider,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A token returned from the previous call to ‘ListRecipes` for getting the next set of recipes (if they exist).

Returns:

  • (String)


3269
3270
3271
3272
3273
3274
3275
# File 'lib/aws-sdk-personalize/types.rb', line 3269

class ListRecipesRequest < Struct.new(
  :recipe_provider,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#recipe_providerString

The default is ‘SERVICE`.

Returns:

  • (String)


3269
3270
3271
3272
3273
3274
3275
# File 'lib/aws-sdk-personalize/types.rb', line 3269

class ListRecipesRequest < Struct.new(
  :recipe_provider,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end