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¶
Arguments¶
AppMonitorName[required] The name of the app monitor associated with the destinations that you want to retrieve.
MaxResultsThe 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
NextTokenvalue.NextTokenUse 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"
)