Module Values.DatabaseSourceDescriptionSource

The top level object for database source description. Amazon Data Firehose is in preview release and is subject to change.

Sourcetype nonrec t = {
  1. type_ : DatabaseType.t option;
    (*

    The type of database engine. This can be one of the following values. MySQL PostgreSQL Amazon Data Firehose is in preview release and is subject to change.

    *)
  2. endpoint : DatabaseEndpoint.t option;
    (*

    The endpoint of the database server. Amazon Data Firehose is in preview release and is subject to change.

    *)
  3. port : DatabasePort.t option;
    (*

    The port of the database. This can be one of the following values. 3306 for MySQL database type 5432 for PostgreSQL database type Amazon Data Firehose is in preview release and is subject to change.

    *)
  4. sSLMode : SSLMode.t option;
    (*

    The mode to enable or disable SSL when Firehose connects to the database endpoint. Amazon Data Firehose is in preview release and is subject to change.

    *)
  5. databases : DatabaseList.t option;
    (*

    The list of database patterns in source database endpoint for Firehose to read from. Amazon Data Firehose is in preview release and is subject to change.

    *)
  6. tables : DatabaseTableList.t option;
    (*

    The list of table patterns in source database endpoint for Firehose to read from. Amazon Data Firehose is in preview release and is subject to change.

    *)
  7. columns : DatabaseColumnList.t option;
    (*

    The list of column patterns in source database endpoint for Firehose to read from. Amazon Data Firehose is in preview release and is subject to change.

    *)
  8. surrogateKeys : DatabaseColumnIncludeOrExcludeList.t option;
    (*

    The optional list of table and column names used as unique key columns when taking snapshot if the tables donโ€™t have primary keys configured. Amazon Data Firehose is in preview release and is subject to change.

    *)
  9. snapshotWatermarkTable : DatabaseTableName.t option;
    (*

    The fully qualified name of the table in source database endpoint that Firehose uses to track snapshot progress. Amazon Data Firehose is in preview release and is subject to change.

    *)
  10. snapshotInfo : DatabaseSnapshotInfoList.t option;
    (*

    The structure that describes the snapshot information of a table in source database endpoint that Firehose reads. Amazon Data Firehose is in preview release and is subject to change.

    *)
  11. databaseSourceAuthenticationConfiguration : DatabaseSourceAuthenticationConfiguration.t option;
    (*

    The structure to configure the authentication methods for Firehose to connect to source database endpoint. Amazon Data Firehose is in preview release and is subject to change.

    *)
  12. databaseSourceVPCConfiguration : DatabaseSourceVPCConfiguration.t option;
    (*

    The details of the VPC Endpoint Service which Firehose uses to create a PrivateLink to the database. Amazon Data Firehose is in preview release and is subject to change.

    *)
}
Sourceval make : ?type_:??? -> ?endpoint:??? -> ?port:??? -> ?sSLMode:??? -> ?databases:??? -> ?tables:??? -> ?columns:??? -> ?surrogateKeys:??? -> ?snapshotWatermarkTable:??? -> ?snapshotInfo:??? -> ?databaseSourceAuthenticationConfiguration:??? -> ?databaseSourceVPCConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DatabasePort.t | `List of [> `String of DatabaseColumnName.t | `Structure of (string * [> `Enum of string | `String of NonEmptyStringWithoutWhitespace.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of DatabaseEndpoint.t | `Structure of (string * [> `List of [> `String of DatabaseName.t ] list | `String of VpcEndpointServiceName.t | `Structure of (string * [> `Boolean of BooleanObject.t | `String of SecretARN.t ]) 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