Put Event Type
frauddetector_put_event_type | R Documentation |
Creates or updates an event type¶
Description¶
Creates or updates an event type. An event is a business activity that is evaluated for fraud risk. With Amazon Fraud Detector, you generate fraud predictions for events. An event type defines the structure for an event sent to Amazon Fraud Detector. This includes the variables sent as part of the event, the entity performing the event (such as a customer), and the labels that classify the event. Example event types include online payment transactions, account registrations, and authentications.
Usage¶
frauddetector_put_event_type(name, description, eventVariables, labels,
entityTypes, eventIngestion, tags, eventOrchestration)
Arguments¶
name
[required] The name.
description
The description of the event type.
eventVariables
[required] The event type variables.
labels
The event type labels.
entityTypes
[required] The entity type for the event type. Example entity types: customer, merchant, account.
eventIngestion
Specifies if ingestion is enabled or disabled.
tags
A collection of key and value pairs.
eventOrchestration
Enables or disables event orchestration. If enabled, you can send event predictions to select AWS services for downstream processing of the events.
Value¶
An empty list.
Request syntax¶
svc$put_event_type(
name = "string",
description = "string",
eventVariables = list(
"string"
),
labels = list(
"string"
),
entityTypes = list(
"string"
),
eventIngestion = "ENABLED"|"DISABLED",
tags = list(
list(
key = "string",
value = "string"
)
),
eventOrchestration = list(
eventBridgeEnabled = TRUE|FALSE
)
)