Interface TableMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableMetadata.Builder,TableMetadata>,SdkBuilder<TableMetadata.Builder,TableMetadata>,SdkPojo
- Enclosing class:
- TableMetadata
public static interface TableMetadata.Builder extends SdkPojo, CopyableBuilder<TableMetadata.Builder,TableMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableMetadata.Buildericeberg(Consumer<IcebergMetadata.Builder> iceberg)Contains details about the metadata of an Iceberg table.TableMetadata.Buildericeberg(IcebergMetadata iceberg)Contains details about the metadata of an Iceberg table.-
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
-
iceberg
TableMetadata.Builder iceberg(IcebergMetadata iceberg)
Contains details about the metadata of an Iceberg table.
- Parameters:
iceberg- Contains details about the metadata of an Iceberg table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iceberg
default TableMetadata.Builder iceberg(Consumer<IcebergMetadata.Builder> iceberg)
Contains details about the metadata of an Iceberg table.
This is a convenience method that creates an instance of theIcebergMetadata.Builderavoiding the need to create one manually viaIcebergMetadata.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toiceberg(IcebergMetadata).- Parameters:
iceberg- a consumer that will call methods onIcebergMetadata.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
iceberg(IcebergMetadata)
-
-