AWS SSM parameter store not fetching all key/values
问题 Could someone let me know why the below code only fetching few entries from the parameter store ? GetParametersByPathRequest getParametersByPathRequest = new GetParametersByPathRequest(); getParametersByPathRequest.withPath("/").setRecursive(true); getParametersByPathRequest.setWithDecryption(true); GetParametersByPathResult result = client.getParametersByPath(getParametersByPathRequest); result.getParameters().forEach(parameter -> { System.out.println(parameter.getName() + " - > " +