Skip to content

List Rum Metrics Destinations

cloudwatchrum_list_rum_metrics_destinations R Documentation

Returns a list of destinations that you have created to receive RUM extended metrics, for the specified app monitor

Description

Returns a list of destinations that you have created to receive RUM extended metrics, for the specified app monitor.

For more information about extended metrics, see AddRumMetrics.

Usage

cloudwatchrum_list_rum_metrics_destinations(AppMonitorName, MaxResults,
  NextToken)

Arguments

AppMonitorName

[required] The name of the app monitor associated with the destinations that you want to retrieve.

MaxResults

The maximum number of results to return in one operation. The default is 50. The maximum that you can specify is 100.

To retrieve the remaining results, make another call with the returned NextToken value.

NextToken

Use the token returned by the previous operation to request the next page of results.

Value

A list with the following syntax:

list(
  Destinations = list(
    list(
      Destination = "CloudWatch"|"Evidently",
      DestinationArn = "string",
      IamRoleArn = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_rum_metrics_destinations(
  AppMonitorName = "string",
  MaxResults = 123,
  NextToken = "string"
)