List App Monitors
| cloudwatchrum_list_app_monitors | R Documentation | 
Returns a list of the Amazon CloudWatch RUM app monitors in the account¶
Description¶
Returns a list of the Amazon CloudWatch RUM app monitors in the account.
Usage¶
cloudwatchrum_list_app_monitors(MaxResults, NextToken)
Arguments¶
| MaxResults | The maximum number of results to return in one operation. The default is 50. The maximum that you can specify is 100. | 
| NextToken | Use the token returned by the previous operation to request the next page of results. | 
Value¶
A list with the following syntax:
list(
  AppMonitorSummaries = list(
    list(
      Created = "string",
      Id = "string",
      LastModified = "string",
      Name = "string",
      State = "CREATED"|"DELETING"|"ACTIVE"
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$list_app_monitors(
  MaxResults = 123,
  NextToken = "string"
)