Get Table Bucket Maintenance Configuration
s3tables_get_table_bucket_maintenance_configuration | R Documentation |
Gets details about a maintenance configuration for a given table bucket¶
Description¶
Gets details about a maintenance configuration for a given table bucket. For more information, see Amazon S3 table bucket maintenance in the Amazon Simple Storage Service User Guide.
Permissions¶
You must have the s3tables:GetTableBucketMaintenanceConfiguration
permission to use this operation.
Usage¶
Arguments¶
tableBucketARN
[required] The Amazon Resource Name (ARN) of the table bucket associated with the maintenance configuration.
Value¶
A list with the following syntax:
list(
tableBucketARN = "string",
configuration = list(
list(
status = "enabled"|"disabled",
settings = list(
icebergUnreferencedFileRemoval = list(
unreferencedDays = 123,
nonCurrentDays = 123
)
)
)
)
)