Interface CfnTablePropsMixin.IcebergPartitionFieldProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTablePropsMixin.IcebergPartitionFieldProperty.Jsii$Proxy
- Enclosing class:
CfnTablePropsMixin
@Stability(Stable)
public static interface CfnTablePropsMixin.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.cfnpropertymixins.services.s3tables.*;
IcebergPartitionFieldProperty icebergPartitionFieldProperty = IcebergPartitionFieldProperty.builder()
.fieldId(123)
.name("name")
.sourceId(123)
.transform("transform")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTablePropsMixin.IcebergPartitionFieldPropertystatic final classAn implementation forCfnTablePropsMixin.IcebergPartitionFieldProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe partition field ID (auto-assigned starting from 1000 if not specified).default StringgetName()The name of the partition field.default NumberThe source column ID to partition on.default StringThe partition transform function (identity, bucket[N], truncate[N], year, month, day, hour).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFieldId
The partition field ID (auto-assigned starting from 1000 if not specified).- See Also:
-
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:
-
builder
-