Class: Aws::Glue::Types::IcebergOrphanFileDeletionConfiguration

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

Overview

The configuration for an Iceberg orphan file deletion optimizer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#locationString

Specifies a directory in which to look for files (defaults to the table's location). You may choose a sub-directory rather than the top-level table location.

Returns:

  • (String)


16191
16192
16193
16194
16195
16196
16197
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16191

class IcebergOrphanFileDeletionConfiguration < Struct.new(
  :orphan_file_retention_period_in_days,
  :location,
  :run_rate_in_hours)
  SENSITIVE = []
  include Aws::Structure
end

#orphan_file_retention_period_in_daysInteger

The number of days that orphan files should be retained before file deletion. If an input is not provided, the default value 3 will be used.

Returns:

  • (Integer)


16191
16192
16193
16194
16195
16196
16197
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16191

class IcebergOrphanFileDeletionConfiguration < Struct.new(
  :orphan_file_retention_period_in_days,
  :location,
  :run_rate_in_hours)
  SENSITIVE = []
  include Aws::Structure
end

#run_rate_in_hoursInteger

The interval in hours between orphan file deletion job runs. This parameter controls how frequently the orphan file deletion optimizer will run to clean up orphan files. The value must be between 3 and 168 hours (7 days). If an input is not provided, the default value 24 will be used.

Returns:

  • (Integer)


16191
16192
16193
16194
16195
16196
16197
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16191

class IcebergOrphanFileDeletionConfiguration < Struct.new(
  :orphan_file_retention_period_in_days,
  :location,
  :run_rate_in_hours)
  SENSITIVE = []
  include Aws::Structure
end