Class: Aws::Glue::Types::IcebergOrphanFileDeletionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::IcebergOrphanFileDeletionConfiguration
- 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
-
#location ⇒ String
Specifies a directory in which to look for files (defaults to the table’s location).
-
#orphan_file_retention_period_in_days ⇒ Integer
The number of days that orphan files should be retained before file deletion.
Instance Attribute Details
#location ⇒ String
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.
13613 13614 13615 13616 13617 13618 |
# File 'lib/aws-sdk-glue/types.rb', line 13613 class IcebergOrphanFileDeletionConfiguration < Struct.new( :orphan_file_retention_period_in_days, :location) SENSITIVE = [] include Aws::Structure end |
#orphan_file_retention_period_in_days ⇒ Integer
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.
13613 13614 13615 13616 13617 13618 |
# File 'lib/aws-sdk-glue/types.rb', line 13613 class IcebergOrphanFileDeletionConfiguration < Struct.new( :orphan_file_retention_period_in_days, :location) SENSITIVE = [] include Aws::Structure end |