Class: Aws::Glue::Types::IcebergOptimizationProperties

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

Overview

A structure that specifies Iceberg table optimization properties for the catalog, including configurations for compaction, retention, and orphan file deletion operations.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#compactionHash<String,String>

A map of key-value pairs that specify configuration parameters for Iceberg table compaction operations, which optimize the layout of data files to improve query performance.

Returns:

  • (Hash<String,String>)


16106
16107
16108
16109
16110
16111
16112
16113
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16106

class IcebergOptimizationProperties < Struct.new(
  :role_arn,
  :compaction,
  :retention,
  :orphan_file_deletion)
  SENSITIVE = []
  include Aws::Structure
end

#orphan_file_deletionHash<String,String>

A map of key-value pairs that specify configuration parameters for Iceberg orphan file deletion operations, which identify and remove files that are no longer referenced by the table metadata.

Returns:

  • (Hash<String,String>)


16106
16107
16108
16109
16110
16111
16112
16113
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16106

class IcebergOptimizationProperties < Struct.new(
  :role_arn,
  :compaction,
  :retention,
  :orphan_file_deletion)
  SENSITIVE = []
  include Aws::Structure
end

#retentionHash<String,String>

A map of key-value pairs that specify configuration parameters for Iceberg table retention operations, which manage the lifecycle of table snapshots to control storage costs.

Returns:

  • (Hash<String,String>)


16106
16107
16108
16109
16110
16111
16112
16113
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16106

class IcebergOptimizationProperties < Struct.new(
  :role_arn,
  :compaction,
  :retention,
  :orphan_file_deletion)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The Amazon Resource Name (ARN) of the IAM role that will be assumed to perform Iceberg table optimization operations.

Returns:

  • (String)


16106
16107
16108
16109
16110
16111
16112
16113
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16106

class IcebergOptimizationProperties < Struct.new(
  :role_arn,
  :compaction,
  :retention,
  :orphan_file_deletion)
  SENSITIVE = []
  include Aws::Structure
end