Get Event
frauddetector_get_event | R Documentation |
Retrieves details of events stored with Amazon Fraud Detector¶
Description¶
Retrieves details of events stored with Amazon Fraud Detector. This action does not retrieve prediction results.
Usage¶
frauddetector_get_event(eventId, eventTypeName)
Arguments¶
eventId |
[required] The ID of the event to retrieve. |
eventTypeName |
[required] The event type of the event to retrieve. |
Value¶
A list with the following syntax:
list(
event = list(
eventId = "string",
eventTypeName = "string",
eventTimestamp = "string",
eventVariables = list(
"string"
),
currentLabel = "string",
labelTimestamp = "string",
entities = list(
list(
entityType = "string",
entityId = "string"
)
)
)
)
Request syntax¶
svc$get_event(
eventId = "string",
eventTypeName = "string"
)