Values.ConnectionConfigurationSourceProvides the configuration information that's required to connect to a database.
type nonrec t = {databaseHost : DatabaseHost.t;The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.
*)databasePort : DatabasePort.t;The port that the database uses for connections.
*)databaseName : DatabaseName.t;The name of the database containing the document data.
*)tableName : TableName.t;The name of the table that contains the document data.
*)secretArn : SecretArn.t;The Amazon Resource Name (ARN) of an Secrets Manager secret that stores the credentials. The credentials should be a user-password pair. For more information, see Using a Database Data Source. For more information about Secrets Manager, see What Is Secrets Manager in the Secrets Manager user guide.
*)}val make :
databaseHost:DatabaseHost.t ->
databasePort:DatabasePort.t ->
databaseName:DatabaseName.t ->
tableName:TableName.t ->
secretArn:SecretArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of DatabasePort.t | `String of DatabaseHost.t ])
list ]