Returns detailed information about one or more specified events.
Information includes standard event data (Region, service, and so on, as
returned by describe_events
), a detailed
event description, and possible additional metadata that depends upon
the nature of the event. Affected entities are not included. To retrieve
those, use the
describe_affected_entities
operation.
If a specified event cannot be retrieved, an error message is returned for that event.
health_describe_event_details(eventArns, locale)
[required] A list of event ARNs (unique identifiers). For example:
"arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"
The locale (language) to return information in. English (en) is the default and the only supported value at this time.
A list with the following syntax:
list( successfulSet = list( list( event = list( arn = "string", service = "string", eventTypeCode = "string", eventTypeCategory = "issue"|"accountNotification"|"scheduledChange"|"investigation", region = "string", availabilityZone = "string", startTime = as.POSIXct( "2015-01-01" ), endTime = as.POSIXct( "2015-01-01" ), lastUpdatedTime = as.POSIXct( "2015-01-01" ), statusCode = "open"|"closed"|"upcoming", eventScopeCode = "PUBLIC"|"ACCOUNT_SPECIFIC"|"NONE" ), eventDescription = list( latestDescription = "string" ), eventMetadata = list( "string" ) ) ), failedSet = list( list( eventArn = "string", errorName = "string", errorMessage = "string" ) ) )
svc$describe_event_details( eventArns = list( "string" ), locale = "string" )