Class: Aws::Personalize::Types::ListRecommendersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::ListRecommendersRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the Domain dataset group to list the recommenders for.
-
#max_results ⇒ Integer
The maximum number of recommenders to return.
-
#next_token ⇒ String
A token returned from the previous call to ‘ListRecommenders` for getting the next set of recommenders (if they exist).
Instance Attribute Details
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the Domain dataset group to list the recommenders for. When a Domain dataset group is not specified, all the recommenders associated with the account are listed.
4428 4429 4430 4431 4432 4433 4434 |
# File 'lib/aws-sdk-personalize/types.rb', line 4428 class ListRecommendersRequest < Struct.new( :dataset_group_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of recommenders to return.
4428 4429 4430 4431 4432 4433 4434 |
# File 'lib/aws-sdk-personalize/types.rb', line 4428 class ListRecommendersRequest < Struct.new( :dataset_group_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token returned from the previous call to ‘ListRecommenders` for getting the next set of recommenders (if they exist).
4428 4429 4430 4431 4432 4433 4434 |
# File 'lib/aws-sdk-personalize/types.rb', line 4428 class ListRecommendersRequest < Struct.new( :dataset_group_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |