Skip to content

Put Project Events

cloudwatchevidently_put_project_events R Documentation

Sends performance events to Evidently

Description

Sends performance events to Evidently. These events can be used to evaluate a launch or an experiment.

Usage

cloudwatchevidently_put_project_events(events, project)

Arguments

events

[required] An array of event structures that contain the performance data that is being sent to Evidently.

project

[required] The name or ARN of the project to write the events to.

Value

A list with the following syntax:

list(
  eventResults = list(
    list(
      errorCode = "string",
      errorMessage = "string",
      eventId = "string"
    )
  ),
  failedEventCount = 123
)

Request syntax

svc$put_project_events(
  events = list(
    list(
      data = "string",
      timestamp = as.POSIXct(
        "2015-01-01"
      ),
      type = "aws.evidently.evaluation"|"aws.evidently.custom"
    )
  ),
  project = "string"
)