Skip to main content

rum_events

Creates, updates, deletes, gets or lists a rum_events resource.

Overview

Namerum_events
TypeResource
Idaws.rum.rum_events

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
put_rum_eventsreplaceid, region, BatchId, AppMonitorDetails, UserDetails, RumEventsSends telemetry events about your application performance and user behavior to CloudWatch RUM. The code snippet that RUM generates for you to add to your application includes PutRumEvents operations to send this data to RUM. Each PutRumEvents operation can send a batch of events from one user session.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
idstringThe ID of the app monitor that is sending this data.
regionstringAWS region (default: us-east-1)

REPLACE examples

Sends telemetry events about your application performance and user behavior to CloudWatch RUM. The code snippet that RUM generates for you to add to your application includes PutRumEvents operations to send this data to RUM. Each PutRumEvents operation can send a batch of events from one user session.

REPLACE aws.rum.rum_events
SET
BatchId = '{{ BatchId }}',
AppMonitorDetails = '{{ AppMonitorDetails }}',
UserDetails = '{{ UserDetails }}',
RumEvents = '{{ RumEvents }}',
Alias = '{{ Alias }}'
WHERE
id = '{{ id }}' --required
AND region = '{{ region }}' --required
AND BatchId = '{{ BatchId }}' --required
AND AppMonitorDetails = '{{ AppMonitorDetails }}' --required
AND UserDetails = '{{ UserDetails }}' --required
AND RumEvents = '{{ RumEvents }}' --required;