Interface IcebergTableUpdate.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<IcebergTableUpdate.Builder,
,IcebergTableUpdate> SdkBuilder<IcebergTableUpdate.Builder,
,IcebergTableUpdate> SdkPojo
- Enclosing class:
IcebergTableUpdate
-
Method Summary
Modifier and TypeMethodDescriptionThe updated S3 location where the Iceberg table data will be stored.default IcebergTableUpdate.Builder
partitionSpec
(Consumer<IcebergPartitionSpec.Builder> partitionSpec) The updated partitioning specification that defines how the table data should be reorganized and partitioned.partitionSpec
(IcebergPartitionSpec partitionSpec) The updated partitioning specification that defines how the table data should be reorganized and partitioned.properties
(Map<String, String> properties) Updated key-value pairs of table properties and configuration settings for the Iceberg table.default IcebergTableUpdate.Builder
schema
(Consumer<IcebergSchema.Builder> schema) The updated schema definition for the Iceberg table, specifying any changes to field structure, data types, or schema metadata.schema
(IcebergSchema schema) The updated schema definition for the Iceberg table, specifying any changes to field structure, data types, or schema metadata.default IcebergTableUpdate.Builder
sortOrder
(Consumer<IcebergSortOrder.Builder> sortOrder) The updated sort order specification that defines how data should be ordered within partitions for optimal query performance.sortOrder
(IcebergSortOrder sortOrder) The updated sort order specification that defines how data should be ordered within partitions for optimal query performance.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 Details
-
schema
The updated schema definition for the Iceberg table, specifying any changes to field structure, data types, or schema metadata.
- Parameters:
schema
- The updated schema definition for the Iceberg table, specifying any changes to field structure, data types, or schema metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schema
The updated schema definition for the Iceberg table, specifying any changes to field structure, data types, or schema metadata.
This is a convenience method that creates an instance of theIcebergSchema.Builder
avoiding the need to create one manually viaIcebergSchema.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toschema(IcebergSchema)
.- Parameters:
schema
- a consumer that will call methods onIcebergSchema.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
partitionSpec
The updated partitioning specification that defines how the table data should be reorganized and partitioned.
- Parameters:
partitionSpec
- The updated partitioning specification that defines how the table data should be reorganized and partitioned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionSpec
default IcebergTableUpdate.Builder partitionSpec(Consumer<IcebergPartitionSpec.Builder> partitionSpec) The updated partitioning specification that defines how the table data should be reorganized and partitioned.
This is a convenience method that creates an instance of theIcebergPartitionSpec.Builder
avoiding the need to create one manually viaIcebergPartitionSpec.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topartitionSpec(IcebergPartitionSpec)
.- Parameters:
partitionSpec
- a consumer that will call methods onIcebergPartitionSpec.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
sortOrder
The updated sort order specification that defines how data should be ordered within partitions for optimal query performance.
- Parameters:
sortOrder
- The updated sort order specification that defines how data should be ordered within partitions for optimal query performance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortOrder
The updated sort order specification that defines how data should be ordered within partitions for optimal query performance.
This is a convenience method that creates an instance of theIcebergSortOrder.Builder
avoiding the need to create one manually viaIcebergSortOrder.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosortOrder(IcebergSortOrder)
.- Parameters:
sortOrder
- a consumer that will call methods onIcebergSortOrder.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
location
The updated S3 location where the Iceberg table data will be stored.
- Parameters:
location
- The updated S3 location where the Iceberg table data will be stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
Updated key-value pairs of table properties and configuration settings for the Iceberg table.
- Parameters:
properties
- Updated key-value pairs of table properties and configuration settings for the Iceberg table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-