Get Table Maintenance Configuration
| s3tables_get_table_maintenance_configuration | R Documentation | 
Gets details about the maintenance configuration of a table¶
Description¶
Gets details about the maintenance configuration of a table. For more information, see S3 Tables maintenance in the Amazon Simple Storage Service User Guide.
Permissions¶
You must have the s3tables:GetTableMaintenanceConfiguration permission
to use this operation.
Usage¶
s3tables_get_table_maintenance_configuration(tableBucketARN, namespace,
  name)
Arguments¶
tableBucketARN | 
[required] The Amazon Resource Name (ARN) of the table bucket.  | 
namespace | 
[required] The namespace associated with the table.  | 
name | 
[required] The name of the table.  | 
Value¶
A list with the following syntax:
list(
  tableARN = "string",
  configuration = list(
    list(
      status = "enabled"|"disabled",
      settings = list(
        icebergCompaction = list(
          targetFileSizeMB = 123
        ),
        icebergSnapshotManagement = list(
          minSnapshotsToKeep = 123,
          maxSnapshotAgeHours = 123
        )
      )
    )
  )
)
Request syntax¶
svc$get_table_maintenance_configuration(
  tableBucketARN = "string",
  namespace = "string",
  name = "string"
)