Update Recommender
| customerprofiles_update_recommender | R Documentation |
Updates the properties of an existing recommender, allowing you to modify its configuration and description¶
Description¶
Updates the properties of an existing recommender, allowing you to modify its configuration and description.
Usage¶
customerprofiles_update_recommender(DomainName, RecommenderName,
Description, RecommenderConfig)
Arguments¶
DomainName |
[required] The unique name of the domain. |
RecommenderName |
[required] The name of the recommender to update. |
Description |
The new description to assign to the recommender. |
RecommenderConfig |
The new configuration settings to apply to the recommender, including updated parameters and settings that define its behavior. |
Value¶
A list with the following syntax:
list(
RecommenderName = "string"
)
Request syntax¶
svc$update_recommender(
DomainName = "string",
RecommenderName = "string",
Description = "string",
RecommenderConfig = list(
EventsConfig = list(
EventParametersList = list(
list(
EventType = "string",
EventValueThreshold = 123.0,
EventWeight = 123.0
)
)
),
TrainingFrequency = 123,
InferenceConfig = list(
MinProvisionedTPS = 123
),
IncludedColumns = list(
list(
"string"
)
),
ExcludedColumns = list(
list(
"string"
)
)
)
)