0
我們使用下面的代碼從AWS參數商店獲得的參數:什麼是用於在AWS參數存儲中設置參數的Java API?
AWSSimpleSystemsManagement client = AWSSimpleSystemsManagementClientBuilder.standard().build();
GetParametersByPathRequest request = new GetParametersByPathRequest();
request.setWithDecryption(true);
request.setPath(path);
GetParametersByPathResult result = client.getParametersByPath(request);
什麼是設置參數的代碼?
你能不能顯示整個代碼?特別是,我如何創建AmazonWebServiceRequest? –