Skip to content

Get Column Statistics Task Run

glue_get_column_statistics_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_column_statistics_task_run(ColumnStatisticsTaskRunId)

Arguments

ColumnStatisticsTaskRunId

[required] The identifier for the particular column statistics task run.

Value

A list with the following syntax:

list(
  ColumnStatisticsTaskRun = 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
  )
)

Request syntax

svc$get_column_statistics_task_run(
  ColumnStatisticsTaskRunId = "string"
)