Skip to content

Get Table Maintenance Job Status

s3tables_get_table_maintenance_job_status R Documentation

Gets the status of a maintenance job for a table

Description

Gets the status of a maintenance job for a table. For more information, see S3 Tables maintenance in the Amazon Simple Storage Service User Guide.

Permissions

You must have the s3tables:GetTableMaintenanceJobStatus permission to use this operation.

Usage

s3tables_get_table_maintenance_job_status(tableBucketARN, namespace,
  name)

Arguments

tableBucketARN

[required] The Amazon Resource Name (ARN) of the table bucket.

namespace

[required] The name of the namespace the table is associated with.

</p>
name

[required] The name of the maintenance job.

Value

A list with the following syntax:

list(
  tableARN = "string",
  status = list(
    list(
      status = "Not_Yet_Run"|"Successful"|"Failed"|"Disabled",
      lastRunTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      failureMessage = "string"
    )
  )
)

Request syntax

svc$get_table_maintenance_job_status(
  tableBucketARN = "string",
  namespace = "string",
  name = "string"
)