Class CfnTable.CompactionProperty
Contains details about the compaction settings for an Iceberg table.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.S3Tables
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTable.CompactionProperty : CfnTable.ICompactionProperty
Syntax (vb)
Public Class CfnTable.CompactionProperty Implements CfnTable.ICompactionProperty
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.AWS.S3Tables;
var compactionProperty = new CompactionProperty {
Status = "status",
TargetFileSizeMb = 123
};
Synopsis
Constructors
| CompactionProperty() | Contains details about the compaction settings for an Iceberg table. |
Properties
| Status | The status of the maintenance configuration. |
| TargetFileSizeMb | The target file size for the table in MB. |
Constructors
CompactionProperty()
Contains details about the compaction settings for an Iceberg table.
public CompactionProperty()
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.AWS.S3Tables;
var compactionProperty = new CompactionProperty {
Status = "status",
TargetFileSizeMb = 123
};
Properties
Status
The status of the maintenance configuration.
public string? Status { get; set; }
Property Value
Remarks
TargetFileSizeMb
The target file size for the table in MB.
public double? TargetFileSizeMb { get; set; }