You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The secret should be in the correct JSON format. For more information, see the [AWS Secrets Manager documentation](https://docs.aws.amazon.com/secretsmanager/latest/userguide/reference_secret_json_structure). For example:
94
87
```json
95
88
{
96
-
"username": "user",
97
-
"password": "pass",
98
-
...
89
+
"host": "<host name>",
90
+
"username": "<username>",
91
+
"password": "<password>",
92
+
"dbname": "<database name>",
93
+
"port": "<port number>",
99
94
}
100
95
```
101
96
97
+
We support a variety of drivers. For more information, see the [AWS Secrets Manager JDBC documentation](https://docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets_jdbc).
98
+
99
+
102
100
## Credentials
103
101
104
102
This library uses the [Default Credential Provider Chain](https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/credentials.html). The following options exist to override some of the defaults:
0 commit comments