Skip to content

List Lineage Events

datazone_list_lineage_events R Documentation

Lists lineage events

Description

Lists lineage events.

Usage

datazone_list_lineage_events(domainIdentifier, maxResults, nextToken,
  processingStatus, sortOrder, timestampAfter, timestampBefore)

Arguments

domainIdentifier

[required] The ID of the domain where you want to list lineage events.

maxResults

The maximum number of lineage events to return in a single call to ListLineageEvents. When the number of lineage events to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListLineageEvents to list the next set of lineage events.

nextToken

When the number of lineage events is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of lineage events, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageEvents to list the next set of lineage events.

processingStatus

The processing status of a lineage event.

sortOrder

The sort order of the lineage events.

timestampAfter

The after timestamp of a lineage event.

timestampBefore

The before timestamp of a lineage event.

Value

A list with the following syntax:

list(
  items = list(
    list(
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      createdBy = "string",
      domainId = "string",
      eventSummary = list(
        openLineageRunEventSummary = list(
          eventType = "START"|"RUNNING"|"COMPLETE"|"ABORT"|"FAIL"|"OTHER",
          inputs = list(
            list(
              name = "string",
              namespace = "string"
            )
          ),
          job = list(
            name = "string",
            namespace = "string"
          ),
          outputs = list(
            list(
              name = "string",
              namespace = "string"
            )
          ),
          runId = "string"
        )
      ),
      eventTime = as.POSIXct(
        "2015-01-01"
      ),
      id = "string",
      processingStatus = "REQUESTED"|"PROCESSING"|"SUCCESS"|"FAILED"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_lineage_events(
  domainIdentifier = "string",
  maxResults = 123,
  nextToken = "string",
  processingStatus = "REQUESTED"|"PROCESSING"|"SUCCESS"|"FAILED",
  sortOrder = "ASCENDING"|"DESCENDING",
  timestampAfter = as.POSIXct(
    "2015-01-01"
  ),
  timestampBefore = as.POSIXct(
    "2015-01-01"
  )
)