또는 와 GetCelebrityInfoAWS SDK 함께 사용 CLI - AWS SDK 코드 예제

AWS 문서 예제 리포지토리에서 더 많은 SDK GitHub AWS SDK 예제를 사용할 수 있습니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

또는 와 GetCelebrityInfoAWS SDK 함께 사용 CLI

다음 코드 예제는 GetCelebrityInfo의 사용 방법을 보여 줍니다.

.NET
AWS SDK for .NET
참고

에 대한 자세한 내용은 를 참조하세요 GitHub. AWS 코드 예시 리포지토리에서 전체 예시를 찾고 설정 및 실행하는 방법을 배워보세요.

using System; using System.Threading.Tasks; using Amazon.Rekognition; using Amazon.Rekognition.Model; /// <summary> /// Shows how to use Amazon Rekognition to retrieve information about the /// celebrity identified by the supplied celebrity Id. /// </summary> public class CelebrityInfo { public static async Task Main() { string celebId = "nnnnnnnn"; var rekognitionClient = new AmazonRekognitionClient(); var celebrityInfoRequest = new GetCelebrityInfoRequest { Id = celebId, }; Console.WriteLine($"Getting information for celebrity: {celebId}"); var celebrityInfoResponse = await rekognitionClient.GetCelebrityInfoAsync(celebrityInfoRequest); // Display celebrity information. Console.WriteLine($"celebrity name: {celebrityInfoResponse.Name}"); Console.WriteLine("Further information (if available):"); celebrityInfoResponse.Urls.ForEach(url => { Console.WriteLine(url); }); } }
  • 자세한 API 내용은 참조GetCelebrityInfo의 섹션을 참조하세요. AWS SDK for .NET API

CLI
AWS CLI

유명 인사에 대한 정보를 가져오는 방법

다음 get-celebrity-info 명령은 지정된 유명 인사에 대한 정보를 표시합니다. id 파라미터는 이전 recognize-celebrities 직접 호출에서 가져온 것입니다.

aws rekognition get-celebrity-info --id nnnnnnn

출력:

{ "Name": "Celeb A", "Urls": [ "www.imdb.com/name/aaaaaaaaa" ] }

자세한 내용은 Amazon Rekognition 개발자 안내서의 유명 인사에 대한 정보 얻기를 참조하세요.

  • 자세한 API 내용은 명령 참조GetCelebrityInfo의 섹션을 참조하세요. AWS CLI