Show / Hide Table of Contents

Class CfnTable.CompactionProperty

Contains details about the compaction settings for an Iceberg table.

Inheritance
object
CfnTable.CompactionProperty
Implements
CfnTable.ICompactionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-compaction.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-compaction.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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-compaction.html#cfn-s3tables-table-compaction-status

TargetFileSizeMb

The target file size for the table in MB.

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-compaction.html#cfn-s3tables-table-compaction-targetfilesizemb

Implements

CfnTable.ICompactionProperty
Back to top Generated by DocFX