List Table Restore Status
redshiftserverless_list_table_restore_status | R Documentation |
Returns information about an array of TableRestoreStatus objects¶
Description¶
Returns information about an array of TableRestoreStatus
objects.
Usage¶
redshiftserverless_list_table_restore_status(maxResults, namespaceName,
nextToken, workgroupName)
Arguments¶
maxResults |
An optional parameter that specifies the maximum number of results to return. You can use nextToken to display the next page of results. |
namespaceName |
The namespace from which to list all of the statuses of
|
nextToken |
If your initial |
workgroupName |
The workgroup from which to list all of the statuses of
|
Value¶
A list with the following syntax:
list(
nextToken = "string",
tableRestoreStatuses = list(
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$list_table_restore_status(
maxResults = 123,
namespaceName = "string",
nextToken = "string",
workgroupName = "string"
)