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.
| 15336 15337 15338 15339 15340 15341 | # File 'lib/aws-sdk-glue/types.rb', line 15336 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.
| 15336 15337 15338 15339 15340 15341 | # File 'lib/aws-sdk-glue/types.rb', line 15336 class IcebergOrphanFileDeletionConfiguration < Struct.new( :orphan_file_retention_period_in_days, :location) SENSITIVE = [] include Aws::Structure end |