Class: Aws::Personalize::Types::ListSolutionVersionsRequest

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 ListSolutionVersionsRequest data as a hash:

{
  solution_arn: "Arn",
  next_token: "NextToken",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of solution versions to return.

Returns:

  • (Integer)


3361
3362
3363
3364
3365
3366
3367
# File 'lib/aws-sdk-personalize/types.rb', line 3361

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

#next_tokenString

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

Returns:

  • (String)


3361
3362
3363
3364
3365
3366
3367
# File 'lib/aws-sdk-personalize/types.rb', line 3361

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

#solution_arnString

The Amazon Resource Name (ARN) of the solution.

Returns:

  • (String)


3361
3362
3363
3364
3365
3366
3367
# File 'lib/aws-sdk-personalize/types.rb', line 3361

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