Values.DestinationTableConfigurationSourceDescribes the configuration of a destination in Apache Iceberg Tables.
type nonrec t = {destinationTableName : StringWithLettersDigitsUnderscoresDots.t;Specifies the name of the Apache Iceberg Table.
*)destinationDatabaseName : StringWithLettersDigitsUnderscoresDots.t;The name of the Apache Iceberg database.
*)uniqueKeys : ListOfNonEmptyStringsWithoutWhitespace.t option;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.
*)partitionSpec : PartitionSpec.t option;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.
*)s3ErrorOutputPrefix : ErrorOutputPrefix.t option;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.
*)}val make :
?uniqueKeys:??? ->
?partitionSpec:??? ->
?s3ErrorOutputPrefix:??? ->
destinationTableName:StringWithLettersDigitsUnderscoresDots.t ->
destinationDatabaseName:StringWithLettersDigitsUnderscoresDots.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of NonEmptyStringWithoutWhitespace.t ] list
| `String of StringWithLettersDigitsUnderscoresDots.t
| `Structure of
(string
* [> `List of
[> `Structure of
(string
* [> `String of NonEmptyStringWithoutWhitespace.t ])
list ]
list ])
list ])
list ]