use of software.amazon.awssdk.services.rekognition.model.GetCelebrityInfoResponse in project aws-doc-sdk-examples by awsdocs.
the class CelebrityInfo method getCelebrityInfo.
// snippet-start:[rekognition.java2.celebrityInfo.main]
public static void getCelebrityInfo(RekognitionClient rekClient, String id) {
try {
GetCelebrityInfoRequest info = GetCelebrityInfoRequest.builder().id(id).build();
GetCelebrityInfoResponse response = rekClient.getCelebrityInfo(info);
// Display celebrity information.
System.out.println("celebrity name: " + response.name());
System.out.println("Further information (if available):");
for (String url : response.urls()) {
System.out.println(url);
}
} catch (RekognitionException e) {
System.out.println(e.getMessage());
System.exit(1);
}
}
Aggregations