Module Values.DestinationTableConfigurationSource

Describes the configuration of a destination in Apache Iceberg Tables.

Sourcetype nonrec t = {
  1. destinationTableName : StringWithLettersDigitsUnderscoresDots.t;
    (*

    Specifies the name of the Apache Iceberg Table.

    *)
  2. destinationDatabaseName : StringWithLettersDigitsUnderscoresDots.t;
    (*

    The name of the Apache Iceberg database.

    *)
  3. 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.

    *)
  4. 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.

    *)
  5. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?uniqueKeys:??? -> ?partitionSpec:??? -> ?s3ErrorOutputPrefix:??? -> destinationTableName:StringWithLettersDigitsUnderscoresDots.t -> destinationDatabaseName:StringWithLettersDigitsUnderscoresDots.t -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t