Interface IcebergPartitionField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IcebergPartitionField.Builder,IcebergPartitionField>,SdkBuilder<IcebergPartitionField.Builder,IcebergPartitionField>,SdkPojo
- Enclosing class:
- IcebergPartitionField
@Mutable @NotThreadSafe public static interface IcebergPartitionField.Builder extends SdkPojo, CopyableBuilder<IcebergPartitionField.Builder,IcebergPartitionField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IcebergPartitionField.BuilderfieldId(Integer fieldId)The unique identifier assigned to this partition field within the Iceberg table's partition specification.IcebergPartitionField.Buildername(String name)The name of the partition field as it will appear in the partitioned table structure.IcebergPartitionField.BuildersourceId(Integer sourceId)The identifier of the source field from the table schema that this partition field is based on.IcebergPartitionField.Buildertransform(String transform)The transformation function applied to the source field to create the partition, such as identity, bucket, truncate, year, month, day, or hour.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
sourceId
IcebergPartitionField.Builder sourceId(Integer sourceId)
The identifier of the source field from the table schema that this partition field is based on.
- Parameters:
sourceId- The identifier of the source field from the table schema that this partition field is based on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transform
IcebergPartitionField.Builder transform(String transform)
The transformation function applied to the source field to create the partition, such as identity, bucket, truncate, year, month, day, or hour.
- Parameters:
transform- The transformation function applied to the source field to create the partition, such as identity, bucket, truncate, year, month, day, or hour.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
IcebergPartitionField.Builder name(String name)
The name of the partition field as it will appear in the partitioned table structure.
- Parameters:
name- The name of the partition field as it will appear in the partitioned table structure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldId
IcebergPartitionField.Builder fieldId(Integer fieldId)
The unique identifier assigned to this partition field within the Iceberg table's partition specification.
- Parameters:
fieldId- The unique identifier assigned to this partition field within the Iceberg table's partition specification.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-