Class: Aws::Personalize::Types::ListSolutionVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::ListSolutionVersionsRequest
- Defined in:
- gems/aws-sdk-personalize/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
-
#max_results ⇒ Integer
The maximum number of solution versions to return.
-
#next_token ⇒ String
A token returned from the previous call to
ListSolutionVersions
for getting the next set of solution versions (if they exist). -
#solution_arn ⇒ String
The Amazon Resource Name (ARN) of the solution.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of solution versions to return.
4550 4551 4552 4553 4554 4555 4556 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4550 class ListSolutionVersionsRequest < Struct.new( :solution_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token returned from the previous call to ListSolutionVersions
for getting the next set of solution versions (if they exist).
4550 4551 4552 4553 4554 4555 4556 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4550 class ListSolutionVersionsRequest < Struct.new( :solution_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#solution_arn ⇒ String
The Amazon Resource Name (ARN) of the solution.
4550 4551 4552 4553 4554 4555 4556 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4550 class ListSolutionVersionsRequest < Struct.new( :solution_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |