Amazon Forecast는 더 이상 신규 고객에게 제공되지 않습니다. Amazon Forecast의 기존 고객은 서비스를 정상적으로 계속 사용할 수 있습니다. 자세히 알아보기
기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
와 ListDatasetGroups
함께 사용 AWS SDK
다음 코드 예시에서는 ListDatasetGroups
을 사용하는 방법을 보여 줍니다.
- Java
-
- SDK Java 2.x용
-
import software.amazon.awssdk.regions.Region;
import software.amazon.awssdk.services.forecast.ForecastClient;
import software.amazon.awssdk.services.forecast.model.DatasetGroupSummary;
import software.amazon.awssdk.services.forecast.model.ListDatasetGroupsRequest;
import software.amazon.awssdk.services.forecast.model.ListDatasetGroupsResponse;
import software.amazon.awssdk.services.forecast.model.ForecastException;
import java.util.List;
/**
* Before running this Java V2 code example, set up your development
* environment, including your credentials.
*
* For more information, see the following documentation topic:
*
* https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.html
*/
public class ListDataSetGroups {
public static void main(String[] args) {
Region region = Region.US_WEST_2;
ForecastClient forecast = ForecastClient.builder()
.region(region)
.build();
listDataGroups(forecast);
forecast.close();
}
public static void listDataGroups(ForecastClient forecast) {
try {
ListDatasetGroupsRequest group = ListDatasetGroupsRequest.builder()
.maxResults(10)
.build();
ListDatasetGroupsResponse response = forecast.listDatasetGroups(group);
List<DatasetGroupSummary> groups = response.datasetGroups();
for (DatasetGroupSummary myGroup : groups) {
System.out.println("The Data Set name is " + myGroup.datasetGroupName());
}
} catch (ForecastException e) {
System.err.println(e.awsErrorDetails().errorMessage());
System.exit(1);
}
}
}
개발자 안내서 및 코드 예제의 AWS SDK 전체 목록은 섹션을 참조하세요AWS SDK와 함께 Forecast 사용. 이 주제에는 시작하기에 대한 정보와 이전 SDK 버전에 대한 세부 정보도 포함되어 있습니다.