Class CfnTablePropsMixin.IcebergPartitionSpecProperty
Partition specification for an Iceberg table.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3Tables
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.IcebergPartitionSpecProperty : CfnTablePropsMixin.IIcebergPartitionSpecProperty
Syntax (vb)
Public Class CfnTablePropsMixin.IcebergPartitionSpecProperty Implements CfnTablePropsMixin.IIcebergPartitionSpecProperty
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.S3Tables;
var icebergPartitionSpecProperty = new IcebergPartitionSpecProperty {
Fields = new [] { new IcebergPartitionFieldProperty {
FieldId = 123,
Name = "name",
SourceId = 123,
Transform = "transform"
} },
SpecId = 123
};
Synopsis
Constructors
| IcebergPartitionSpecProperty() | Partition specification for an Iceberg table. |
Properties
| Fields | List of partition fields for an Iceberg table. |
| SpecId | The partition spec ID (defaults to 0 if not specified). |
Constructors
IcebergPartitionSpecProperty()
Partition specification for an Iceberg table.
public IcebergPartitionSpecProperty()
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.S3Tables;
var icebergPartitionSpecProperty = new IcebergPartitionSpecProperty {
Fields = new [] { new IcebergPartitionFieldProperty {
FieldId = 123,
Name = "name",
SourceId = 123,
Transform = "transform"
} },
SpecId = 123
};
Properties
Fields
List of partition fields for an Iceberg table.
public object? Fields { get; set; }
Property Value
Remarks
SpecId
The partition spec ID (defaults to 0 if not specified).
public double? SpecId { get; set; }