Interface CfnDeliveryStream.DestinationTableConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.DestinationTableConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.DestinationTableConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the configuration of a destination in Apache Iceberg Tables.
This section is only needed for tables where you want to update or delete data.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kinesisfirehose.*;
DestinationTableConfigurationProperty destinationTableConfigurationProperty = DestinationTableConfigurationProperty.builder()
.destinationDatabaseName("destinationDatabaseName")
.destinationTableName("destinationTableName")
// the properties below are optional
.partitionSpec(PartitionSpecProperty.builder()
.identity(List.of(PartitionFieldProperty.builder()
.sourceName("sourceName")
.build()))
.build())
.s3ErrorOutputPrefix("s3ErrorOutputPrefix")
.uniqueKeys(List.of("uniqueKeys"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeliveryStream.DestinationTableConfigurationPropertystatic final classAn implementation forCfnDeliveryStream.DestinationTableConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the Apache Iceberg database.Specifies the name of the Apache Iceberg Table.default ObjectThe partition spec configuration for a table that is used by automatic table creation.default StringThe table specific S3 error output prefix.A list of unique keys for a given Apache Iceberg table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationDatabaseName
The name of the Apache Iceberg database.- See Also:
-
getDestinationTableName
Specifies the name of the Apache Iceberg Table.- See Also:
-
getPartitionSpec
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 union: either
IResolvableorCfnDeliveryStream.PartitionSpecProperty- See Also:
-
getS3ErrorOutputPrefix
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.
- See Also:
-
getUniqueKeys
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.
- See Also:
-
builder
-