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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


13454
13455
13456
13457
13458
13459
# File 'lib/aws-sdk-glue/types.rb', line 13454

class IcebergOrphanFileDeletionConfiguration < Struct.new(
  :orphan_file_retention_period_in_days,
  :location)
  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)


13454
13455
13456
13457
13458
13459
# File 'lib/aws-sdk-glue/types.rb', line 13454

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