Interface CfnTablePropsMixin.IIcebergPartitionFieldProperty
A partition field specification for an Iceberg table.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3Tables
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnTablePropsMixin.IIcebergPartitionFieldProperty
Syntax (vb)
Public Interface CfnTablePropsMixin.IIcebergPartitionFieldProperty
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 icebergPartitionFieldProperty = new IcebergPartitionFieldProperty {
FieldId = 123,
Name = "name",
SourceId = 123,
Transform = "transform"
};
Synopsis
Properties
| FieldId | The partition field ID (auto-assigned starting from 1000 if not specified). |
| Name | The name of the partition field. |
| SourceId | The source column ID to partition on. |
| Transform | The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour). |
Properties
FieldId
The partition field ID (auto-assigned starting from 1000 if not specified).
double? FieldId { get; }
Property Value
Remarks
Name
The name of the partition field.
string? Name { get; }
Property Value
Remarks
SourceId
The source column ID to partition on.
double? SourceId { get; }
Property Value
Remarks
Transform
The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour).
string? Transform { get; }