Interface CfnDeliveryStreamPropsMixin.DestinationTableConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.DestinationTableConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.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.cfnpropertymixins.services.kinesisfirehose.*;
DestinationTableConfigurationProperty destinationTableConfigurationProperty = DestinationTableConfigurationProperty.builder()
.destinationDatabaseName("destinationDatabaseName")
.destinationTableName("destinationTableName")
.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 classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.DestinationTableConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the Apache Iceberg database.default StringSpecifies 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
IResolvableorCfnDeliveryStreamPropsMixin.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
@Stability(Stable) static CfnDeliveryStreamPropsMixin.DestinationTableConfigurationProperty.Builder builder()
-