Class CfnTableOptimizerPropsMixin.IcebergCompactionConfigurationProperty
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Glue
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTableOptimizerPropsMixin.IcebergCompactionConfigurationProperty : CfnTableOptimizerPropsMixin.IIcebergCompactionConfigurationProperty
Syntax (vb)
Public Class CfnTableOptimizerPropsMixin.IcebergCompactionConfigurationProperty Implements CfnTableOptimizerPropsMixin.IIcebergCompactionConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Glue;
var icebergCompactionConfigurationProperty = new IcebergCompactionConfigurationProperty {
DeleteFileThreshold = 123,
MinInputFiles = 123,
Strategy = "strategy"
};
Synopsis
Constructors
| IcebergCompactionConfigurationProperty() |
Properties
| DeleteFileThreshold | The minimum number of deletes in a data file to make it eligible for compaction. |
| MinInputFiles | The minimum number of input files before compaction is triggered. |
| Strategy | The compaction strategy to use. |
Constructors
IcebergCompactionConfigurationProperty()
public IcebergCompactionConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Glue;
var icebergCompactionConfigurationProperty = new IcebergCompactionConfigurationProperty {
DeleteFileThreshold = 123,
MinInputFiles = 123,
Strategy = "strategy"
};
Properties
DeleteFileThreshold
The minimum number of deletes in a data file to make it eligible for compaction.
public double? DeleteFileThreshold { get; set; }
Property Value
Remarks
MinInputFiles
The minimum number of input files before compaction is triggered.
public double? MinInputFiles { get; set; }
Property Value
Remarks
Strategy
The compaction strategy to use.
public string? Strategy { get; set; }
Property Value
Remarks
Valid values are binpack, sort, and z-order.