Skip to content

Batch Get Table Optimizer

glue_batch_get_table_optimizer R Documentation

Returns the configuration for the specified table optimizers

Description

Returns the configuration for the specified table optimizers.

Usage

glue_batch_get_table_optimizer(Entries)

Arguments

Entries

[required] A list of BatchGetTableOptimizerEntry objects specifying the table optimizers to retrieve.

Value

A list with the following syntax:

list(
  TableOptimizers = list(
    list(
      catalogId = "string",
      databaseName = "string",
      tableName = "string",
      tableOptimizer = list(
        type = "compaction",
        configuration = list(
          roleArn = "string",
          enabled = TRUE|FALSE
        ),
        lastRun = list(
          eventType = "starting"|"completed"|"failed"|"in_progress",
          startTimestamp = as.POSIXct(
            "2015-01-01"
          ),
          endTimestamp = as.POSIXct(
            "2015-01-01"
          ),
          metrics = list(
            NumberOfBytesCompacted = "string",
            NumberOfFilesCompacted = "string",
            NumberOfDpus = "string",
            JobDurationInHour = "string"
          ),
          error = "string"
        )
      )
    )
  ),
  Failures = list(
    list(
      error = list(
        ErrorCode = "string",
        ErrorMessage = "string"
      ),
      catalogId = "string",
      databaseName = "string",
      tableName = "string",
      type = "compaction"
    )
  )
)

Request syntax

svc$batch_get_table_optimizer(
  Entries = list(
    list(
      catalogId = "string",
      databaseName = "string",
      tableName = "string",
      type = "compaction"
    )
  )
)