Class: Aws::S3Tables::Types::TableBucketMaintenanceSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::TableBucketMaintenanceSettings
- Defined in:
- gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb
Overview
Note:
TableBucketMaintenanceSettings is a union - when making an API calls you must set exactly one of the members.
Note:
TableBucketMaintenanceSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TableBucketMaintenanceSettings corresponding to the set member.
Contains details about the maintenance settings for the table bucket.
Direct Known Subclasses
Defined Under Namespace
Classes: IcebergUnreferencedFileRemoval, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iceberg_unreferenced_file_removal ⇒ Types::IcebergUnreferencedFileRemovalSettings
The unreferenced file removal settings for the table bucket.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#iceberg_unreferenced_file_removal ⇒ Types::IcebergUnreferencedFileRemovalSettings
The unreferenced file removal settings for the table bucket.
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1358 class TableBucketMaintenanceSettings < Struct.new( :iceberg_unreferenced_file_removal, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IcebergUnreferencedFileRemoval < TableBucketMaintenanceSettings; end class Unknown < TableBucketMaintenanceSettings; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1358 1359 1360 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1358 def unknown @unknown end |