Interface DestinationTableConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DestinationTableConfiguration.Builder,DestinationTableConfiguration>,SdkBuilder<DestinationTableConfiguration.Builder,DestinationTableConfiguration>,SdkPojo
- Enclosing class:
- DestinationTableConfiguration
public static interface DestinationTableConfiguration.Builder extends SdkPojo, CopyableBuilder<DestinationTableConfiguration.Builder,DestinationTableConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DestinationTableConfiguration.BuilderdestinationDatabaseName(String destinationDatabaseName)The name of the Apache Iceberg database.DestinationTableConfiguration.BuilderdestinationTableName(String destinationTableName)Specifies the name of the Apache Iceberg Table.default DestinationTableConfiguration.BuilderpartitionSpec(Consumer<PartitionSpec.Builder> partitionSpec)The partition spec configuration for a table that is used by automatic table creation.DestinationTableConfiguration.BuilderpartitionSpec(PartitionSpec partitionSpec)The partition spec configuration for a table that is used by automatic table creation.DestinationTableConfiguration.Builders3ErrorOutputPrefix(String s3ErrorOutputPrefix)The table specific S3 error output prefix.DestinationTableConfiguration.BuilderuniqueKeys(String... uniqueKeys)A list of unique keys for a given Apache Iceberg table.DestinationTableConfiguration.BuilderuniqueKeys(Collection<String> uniqueKeys)A list of unique keys for a given Apache 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
-
destinationTableName
DestinationTableConfiguration.Builder destinationTableName(String destinationTableName)
Specifies the name of the Apache Iceberg Table.
- Parameters:
destinationTableName- Specifies the name of the Apache Iceberg Table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationDatabaseName
DestinationTableConfiguration.Builder destinationDatabaseName(String destinationDatabaseName)
The name of the Apache Iceberg database.
- Parameters:
destinationDatabaseName- The name of the Apache Iceberg database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uniqueKeys
DestinationTableConfiguration.Builder uniqueKeys(Collection<String> uniqueKeys)
A list of unique keys for a given Apache Iceberg table. Firehose will use these for running Create, Update, or Delete operations on the given Iceberg table.
- Parameters:
uniqueKeys- A list of unique keys for a given Apache Iceberg table. Firehose will use these for running Create, Update, or Delete operations on the given Iceberg table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uniqueKeys
DestinationTableConfiguration.Builder uniqueKeys(String... uniqueKeys)
A list of unique keys for a given Apache Iceberg table. Firehose will use these for running Create, Update, or Delete operations on the given Iceberg table.
- Parameters:
uniqueKeys- A list of unique keys for a given Apache Iceberg table. Firehose will use these for running Create, Update, or Delete operations on the given Iceberg table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionSpec
DestinationTableConfiguration.Builder partitionSpec(PartitionSpec partitionSpec)
The partition spec configuration for a table that is used by automatic table creation.
Amazon Data Firehose is in preview release and is subject to change.
- Parameters:
partitionSpec- The partition spec configuration for a table that is used by automatic table creation.Amazon Data Firehose is in preview release and is subject to change.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionSpec
default DestinationTableConfiguration.Builder partitionSpec(Consumer<PartitionSpec.Builder> partitionSpec)
The partition spec configuration for a table that is used by automatic table creation.
Amazon Data Firehose is in preview release and is subject to change.
This is a convenience method that creates an instance of thePartitionSpec.Builderavoiding the need to create one manually viaPartitionSpec.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topartitionSpec(PartitionSpec).- Parameters:
partitionSpec- a consumer that will call methods onPartitionSpec.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
partitionSpec(PartitionSpec)
-
s3ErrorOutputPrefix
DestinationTableConfiguration.Builder s3ErrorOutputPrefix(String s3ErrorOutputPrefix)
The table specific S3 error output prefix. All the errors that occurred while delivering to this table will be prefixed with this value in S3 destination.
- Parameters:
s3ErrorOutputPrefix- The table specific S3 error output prefix. All the errors that occurred while delivering to this table will be prefixed with this value in S3 destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-