Skip to content

Create Column Statistics Task Settings

glue_create_column_statistics_task_settings R Documentation

Creates settings for a column statistics task

Description

Creates settings for a column statistics task.

Usage

glue_create_column_statistics_task_settings(DatabaseName, TableName,
  Role, Schedule, ColumnNameList, SampleSize, CatalogID,
  SecurityConfiguration, Tags)

Arguments

DatabaseName

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

TableName

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

Role

[required] The role used for running the column statistics.

Schedule

A schedule for running the column statistics, specified in CRON syntax.

ColumnNameList

A list of column names for which to run statistics.

SampleSize

The percentage of data to sample.

CatalogID

The ID of the Data Catalog in which the database resides.

SecurityConfiguration

Name of the security configuration that is used to encrypt CloudWatch logs.

Tags

A map of tags.

Value

An empty list.

Request syntax

svc$create_column_statistics_task_settings(
  DatabaseName = "string",
  TableName = "string",
  Role = "string",
  Schedule = "string",
  ColumnNameList = list(
    "string"
  ),
  SampleSize = 123.0,
  CatalogID = "string",
  SecurityConfiguration = "string",
  Tags = list(
    "string"
  )
)