Class: Aws::Personalize::Types::RecommenderConfig

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

Overview

The configuration details of the recommender.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#item_exploration_configHash<String,String>

Specifies the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. Provide itemExplorationConfig data only if your recommenders generate personalized recommendations for a user (not popular items or similar items).

Returns:

  • (Hash<String,String>)


4485
4486
4487
4488
4489
4490
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4485

class RecommenderConfig < Struct.new(
  :item_exploration_config,
  :min_recommendation_requests_per_second)
  SENSITIVE = []
  include Aws::Structure
end

#min_recommendation_requests_per_secondInteger

Specifies the requested minimum provisioned recommendation requests per second that Amazon Personalize will support.

Returns:

  • (Integer)


4485
4486
4487
4488
4489
4490
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 4485

class RecommenderConfig < Struct.new(
  :item_exploration_config,
  :min_recommendation_requests_per_second)
  SENSITIVE = []
  include Aws::Structure
end