DataSourceConnectionConfiguration

data class DataSourceConnectionConfiguration(val databaseHost: String, val databaseName: String, val databasePort: Int, val secretArn: String, val tableName: String)

Constructors

Link copied to clipboard
constructor(databaseHost: String, databaseName: String, databasePort: Int, secretArn: String, tableName: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.

Link copied to clipboard

The name of the database containing the document data.

Link copied to clipboard

The port that the database uses for connections.

Link copied to clipboard

The Amazon Resource Name (ARN) of an AWS 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 AWS Secrets Manager , see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

Link copied to clipboard

The name of the table that contains the document data.