Skip to content

Get Column Statistics Task Settings

glue_get_column_statistics_task_settings R Documentation

Gets settings for a column statistics task

Description

Gets settings for a column statistics task.

Usage

glue_get_column_statistics_task_settings(DatabaseName, TableName)

Arguments

DatabaseName

[required] The name of the database where the table resides.

TableName

[required] The name of the table for which to retrieve column statistics.

Value

A list with the following syntax:

list(
  ColumnStatisticsTaskSettings = list(
    DatabaseName = "string",
    TableName = "string",
    Schedule = list(
      ScheduleExpression = "string",
      State = "SCHEDULED"|"NOT_SCHEDULED"|"TRANSITIONING"
    ),
    ColumnNameList = list(
      "string"
    ),
    CatalogID = "string",
    Role = "string",
    SampleSize = 123.0,
    SecurityConfiguration = "string",
    ScheduleType = "CRON"|"AUTO",
    SettingSource = "CATALOG"|"TABLE",
    LastExecutionAttempt = list(
      Status = "FAILED"|"STARTED",
      ColumnStatisticsTaskRunId = "string",
      ExecutionTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      ErrorMessage = "string"
    )
  )
)

Request syntax

svc$get_column_statistics_task_settings(
  DatabaseName = "string",
  TableName = "string"
)