GetCostAndUsageWithResources 方法在 JAVA SDK 中不可用

GetCostAndUsageWithResources mehtod is not available in JAVA SDK

这里我使用 AWS java SDK 进行编程访问,当我尝试调用 getCostAndUsageWithResources 时,它不可用。但是在 java 文档中提到 getCostAndUsageWithResources 方法可用 (Link for the Documentation)。

Maven 依赖:-

<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.11.728</version>

您添加的只是一个父 POM。 SDK 本身分为 dozens 个 JAR,通常每个服务一个。为成本管理器试试这个:

<dependency>
  <groupId>com.amazonaws</groupId>
  <artifactId>aws-java-sdk-costexplorer</artifactId>
  <version>1.11.728</version>
</dependency>