Show / Hide Table of Contents

Class CfnTableOptimizerPropsMixin.IcebergCompactionConfigurationProperty

Inheritance
object
CfnTableOptimizerPropsMixin.IcebergCompactionConfigurationProperty
Implements
CfnTableOptimizerPropsMixin.IIcebergCompactionConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-icebergcompactionconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-icebergcompactionconfiguration.html

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-icebergcompactionconfiguration.html#cfn-glue-tableoptimizer-icebergcompactionconfiguration-deletefilethreshold

MinInputFiles

The minimum number of input files before compaction is triggered.

public double? MinInputFiles { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-icebergcompactionconfiguration.html#cfn-glue-tableoptimizer-icebergcompactionconfiguration-mininputfiles

Strategy

The compaction strategy to use.

public string? Strategy { get; set; }
Property Value

string

Remarks

Valid values are binpack, sort, and z-order.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-icebergcompactionconfiguration.html#cfn-glue-tableoptimizer-icebergcompactionconfiguration-strategy

Implements

CfnTableOptimizerPropsMixin.IIcebergCompactionConfigurationProperty
Back to top Generated by DocFX