Interface CfnTable.IcebergPartitionFieldProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.IcebergPartitionFieldProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.IcebergPartitionFieldProperty
extends software.amazon.jsii.JsiiSerializable
A partition field specification for an Iceberg table.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3tables.*;
IcebergPartitionFieldProperty icebergPartitionFieldProperty = IcebergPartitionFieldProperty.builder()
.name("name")
.sourceId(123)
.transform("transform")
// the properties below are optional
.fieldId(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.IcebergPartitionFieldPropertystatic final classAn implementation forCfnTable.IcebergPartitionFieldProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe partition field ID (auto-assigned starting from 1000 if not specified).getName()The name of the partition field.The source column ID to partition on.The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the partition field.- See Also:
-
getSourceId
The source column ID to partition on.- See Also:
-
getTransform
The partition transform function (identity, bucket[N], truncate[N], year, month, day, hour).- See Also:
-
getFieldId
The partition field ID (auto-assigned starting from 1000 if not specified).- See Also:
-
builder
-