I created a new JDBC Glue Connection that points to a SQL Server database:
my connection (test)
jdbc:sqlserver://my-server:1433;databaseName=test
When I try to test the connection, I get the following error:
InvalidInputException: 2 validation errors detected: Value '/aws-glue/testconnection/error/my_connection_
How can I resolve this error?
Apparently you cannot use parentheses in the connection name. I changed the connection name from my connection (test)
to my connection
and it worked.