Skip to content

Get Materialized View Refresh Task Run

glue_get_materialized_view_refresh_task_run R Documentation

Get the associated metadata/information for a task run, given a task run ID

Description

Get the associated metadata/information for a task run, given a task run ID.

Usage

glue_get_materialized_view_refresh_task_run(CatalogId,
  MaterializedViewRefreshTaskRunId)

Arguments

CatalogId

[required] The ID of the Data Catalog where the table resides. If none is supplied, the account ID is used by default.

MaterializedViewRefreshTaskRunId

[required] The identifier for the particular materialized view refresh task run.

Value

A list with the following syntax:

list(
  MaterializedViewRefreshTaskRun = list(
    CustomerId = "string",
    MaterializedViewRefreshTaskRunId = "string",
    DatabaseName = "string",
    TableName = "string",
    CatalogId = "string",
    Role = "string",
    Status = "STARTING"|"RUNNING"|"SUCCEEDED"|"FAILED"|"STOPPED",
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdated = as.POSIXct(
      "2015-01-01"
    ),
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    ErrorMessage = "string",
    DPUSeconds = 123.0,
    RefreshType = "FULL"|"INCREMENTAL",
    ProcessedBytes = 123
  )
)

Request syntax

svc$get_materialized_view_refresh_task_run(
  CatalogId = "string",
  MaterializedViewRefreshTaskRunId = "string"
)