Get Column Statistics Task Runs
glue_get_column_statistics_task_runs | R Documentation |
Retrieves information about all runs associated with the specified table¶
Description¶
Retrieves information about all runs associated with the specified table.
Usage¶
Arguments¶
DatabaseName
[required] The name of the database where the table resides.
TableName
[required] The name of the table.
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(
ColumnStatisticsTaskRuns = list(
list(
CustomerId = "string",
ColumnStatisticsTaskRunId = "string",
DatabaseName = "string",
TableName = "string",
ColumnNameList = list(
"string"
),
CatalogID = "string",
Role = "string",
SampleSize = 123.0,
SecurityConfiguration = "string",
NumberOfWorkers = 123,
WorkerType = "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
)
),
NextToken = "string"
)