Skip to content

Get Table Restore Status

redshiftserverless_get_table_restore_status R Documentation

Returns information about a TableRestoreStatus object

Description

Returns information about a TableRestoreStatus object.

Usage

redshiftserverless_get_table_restore_status(tableRestoreRequestId)

Arguments

tableRestoreRequestId

[required] The ID of the restore_table_from_snapshot request to return status for.

Value

A list with the following syntax:

list(
  tableRestoreStatus = list(
    message = "string",
    namespaceName = "string",
    newTableName = "string",
    progressInMegaBytes = 123,
    recoveryPointId = "string",
    requestTime = as.POSIXct(
      "2015-01-01"
    ),
    snapshotName = "string",
    sourceDatabaseName = "string",
    sourceSchemaName = "string",
    sourceTableName = "string",
    status = "string",
    tableRestoreRequestId = "string",
    targetDatabaseName = "string",
    targetSchemaName = "string",
    totalDataInMegaBytes = 123,
    workgroupName = "string"
  )
)

Request syntax

svc$get_table_restore_status(
  tableRestoreRequestId = "string"
)