Skip to content

List Internet Events

cloudwatchinternetmonitor_list_internet_events R Documentation

Lists internet events that cause performance or availability issues for client locations

Description

Lists internet events that cause performance or availability issues for client locations. Amazon CloudWatch Internet Monitor displays information about recent global health events, called internet events, on a global outages map that is available to all Amazon Web Services customers.

You can constrain the list of internet events returned by providing a start time and end time to define a total time frame for events you want to list. Both start time and end time specify the time when an event started. End time is optional. If you don't include it, the default end time is the current time.

You can also limit the events returned to a specific status (ACTIVE or RESOLVED) or type (PERFORMANCE or AVAILABILITY).

Usage

cloudwatchinternetmonitor_list_internet_events(NextToken, MaxResults,
  StartTime, EndTime, EventStatus, EventType)

Arguments

NextToken

The token for the next set of results. You receive this token from a previous call.

MaxResults

The number of query results that you want to return with this call.

StartTime

The start time of the time window that you want to get a list of internet events for.

EndTime

The end time of the time window that you want to get a list of internet events for.

EventStatus

The status of an internet event.

EventType

The type of network impairment.

Value

A list with the following syntax:

list(
  InternetEvents = list(
    list(
      EventId = "string",
      EventArn = "string",
      StartedAt = as.POSIXct(
        "2015-01-01"
      ),
      EndedAt = as.POSIXct(
        "2015-01-01"
      ),
      ClientLocation = list(
        ASName = "string",
        ASNumber = 123,
        Country = "string",
        Subdivision = "string",
        Metro = "string",
        City = "string",
        Latitude = 123.0,
        Longitude = 123.0
      ),
      EventType = "AVAILABILITY"|"PERFORMANCE",
      EventStatus = "ACTIVE"|"RESOLVED"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_internet_events(
  NextToken = "string",
  MaxResults = 123,
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  ),
  EventStatus = "string",
  EventType = "string"
)