List Event Predictions
frauddetector_list_event_predictions | R Documentation |
Gets a list of past predictions¶
Description¶
Gets a list of past predictions. The list can be filtered by detector ID, detector version ID, event ID, event type, or by specifying a time period. If filter is not specified, the most recent prediction is returned.
For example, the following filter lists all past predictions for xyz
event type - { "eventType":{ "value": "xyz" }” }
This is a paginated API. If you provide a null maxResults
, this action
will retrieve a maximum of 10 records per page. If you provide a
maxResults
, the value must be between 50 and 100. To get the next page
results, provide the nextToken
from the response as part of your
request. A null nextToken
fetches the records from the beginning.
Usage¶
frauddetector_list_event_predictions(eventId, eventType, detectorId,
detectorVersionId, predictionTimeRange, nextToken, maxResults)
Arguments¶
eventId
The event ID.
eventType
The event type associated with the detector.
detectorId
The detector ID.
detectorVersionId
The detector version ID.
predictionTimeRange
The time period for when the predictions were generated.
nextToken
Identifies the next page of results to return. Use the token to make the call again to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.
maxResults
The maximum number of predictions to return for the request.
Value¶
A list with the following syntax:
list(
eventPredictionSummaries = list(
list(
eventId = "string",
eventTypeName = "string",
eventTimestamp = "string",
predictionTimestamp = "string",
detectorId = "string",
detectorVersionId = "string"
)
),
nextToken = "string"
)