Module Values.ConnectionConfigurationSource

Provides the configuration information that's required to connect to a database.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. databasePort : DatabasePort.t;
    (*

    The port that the database uses for connections.

    *)
  3. databaseName : DatabaseName.t;
    (*

    The name of the database containing the document data.

    *)
  4. tableName : TableName.t;
    (*

    The name of the table that contains the document data.

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

    *)
}
Sourceval context_ : string
Sourceval make : databaseHost:DatabaseHost.t -> databasePort:DatabasePort.t -> databaseName:DatabaseName.t -> tableName:TableName.t -> secretArn:SecretArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DatabasePort.t | `String of DatabaseHost.t ]) 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