Skip to content

Get Timeline Event

ssmincidents_get_timeline_event R Documentation

Retrieves a timeline event based on its ID and incident record

Description

Retrieves a timeline event based on its ID and incident record.

Usage

ssmincidents_get_timeline_event(eventId, incidentRecordArn)

Arguments

eventId

[required] The ID of the event. You can get an event's ID when you create it, or by using list_timeline_events.

incidentRecordArn

[required] The Amazon Resource Name (ARN) of the incident that includes the timeline event.

Value

A list with the following syntax:

list(
  event = list(
    eventData = "string",
    eventId = "string",
    eventReferences = list(
      list(
        relatedItemId = "string",
        resource = "string"
      )
    ),
    eventTime = as.POSIXct(
      "2015-01-01"
    ),
    eventType = "string",
    eventUpdatedTime = as.POSIXct(
      "2015-01-01"
    ),
    incidentRecordArn = "string"
  )
)

Request syntax

svc$get_timeline_event(
  eventId = "string",
  incidentRecordArn = "string"
)