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.
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1090 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
1090 1091 1092 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1090 def unknown @unknown end |