Skip to content

Get Internet Event

cloudwatchinternetmonitor_get_internet_event R Documentation

Gets information that Amazon CloudWatch Internet Monitor has generated about an internet event

Description

Gets information that Amazon CloudWatch Internet Monitor has generated about an internet event. 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.

The information returned here includes the impacted location, when the event started and (if the event is over) ended, the type of event (PERFORMANCE or AVAILABILITY), and the status (ACTIVE or RESOLVED).

Usage

cloudwatchinternetmonitor_get_internet_event(EventId)

Arguments

EventId

[required] The EventId of the internet event to return information for.

Value

A list with the following syntax:

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"
)

Request syntax

svc$get_internet_event(
  EventId = "string"
)