Put Label
frauddetector_put_label | R Documentation |
Creates or updates label¶
Description¶
Creates or updates label. A label classifies an event as fraudulent or legitimate. Labels are associated with event types and used to train supervised machine learning models in Amazon Fraud Detector.
Usage¶
frauddetector_put_label(name, description, tags)
Arguments¶
name |
[required] The label name. |
description |
The label description. |
tags |
A collection of key and value pairs. |
Value¶
An empty list.
Request syntax¶
svc$put_label(
name = "string",
description = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)