List Materialized View Refresh Task Runs
| glue_list_materialized_view_refresh_task_runs | R Documentation |
List all task runs for a particular account¶
Description¶
List all task runs for a particular account.
Usage¶
glue_list_materialized_view_refresh_task_runs(CatalogId, DatabaseName,
TableName, MaxResults, NextToken)
Arguments¶
CatalogId |
[required] The ID of the Data Catalog where the table resides. If none is supplied, the account ID is used by default. |
DatabaseName |
The database where the table resides. |
TableName |
The name of the table for which statistics is generated. |
MaxResults |
The maximum size of the response. |
NextToken |
A continuation token, if this is a continuation call. |
Value¶
A list with the following syntax:
list(
MaterializedViewRefreshTaskRuns = list(
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
)
),
NextToken = "string"
)
Request syntax¶
svc$list_materialized_view_refresh_task_runs(
CatalogId = "string",
DatabaseName = "string",
TableName = "string",
MaxResults = 123,
NextToken = "string"
)