Class: Aws::S3Tables::Types::IcebergCompactionSettings

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb

Overview

Contains details about the compaction settings for an Iceberg table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#strategyString

The compaction strategy to use for the table. This determines how files are selected and combined during compaction operations.

Returns:

  • (String)


836
837
838
839
840
841
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 836

class IcebergCompactionSettings < Struct.new(
  :target_file_size_mb,
  :strategy)
  SENSITIVE = []
  include Aws::Structure
end

#target_file_size_mbInteger

The target file size for the table in MB.

Returns:

  • (Integer)


836
837
838
839
840
841
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 836

class IcebergCompactionSettings < Struct.new(
  :target_file_size_mb,
  :strategy)
  SENSITIVE = []
  include Aws::Structure
end