AWS Systems Manager Parameter Store: Using StringList as Key Value Pairs in Java (Lambda)
问题 Im using Api Gateway and AWS Lambda and AWS RDS to build an API. My Lambda Function Code is Java. Currently im using the AWS Systems Manager Parameter Store successfully to connect to my Database. Therefore I created a parameter called "connection" which has the type String and holds my complete connection url. In Lambda functions i can access this parameter successfully this way: GetParameterRequest parameterRequest = new GetParameterRequest().withName("connection").withWithDecryption(false)