Я пытаюсь получить фактический ключ из API-ключа в «API-ключах» API-шлюза.
AmazonApiGateway client = AmazonApiGatewayClientBuilder.standard().withRegion("my region").build();
GetApiKeysRequest req = new GetApiKeysRequest();
GetApiKeysResult keys = client.getApiKeys(req);
ApiKey key = keys.getItems().get(0); // just get the first one..
System.out.println(key.getId());
System.out.println(key.getName());
System.out.println(key.getValue());
Надеялся, что getValue () предоставит фактический ключ, но это ноль ..