Skip to content

GetCelebrityRecognition

Source: src/AWS/Rekognition/GetCelebrityRecognition.ts

Runtime binding for rekognition:GetCelebrityRecognition — get the results of an asynchronous celebrities detection job started by StartCelebrityRecognition.

The binding takes no arguments and grants the function rekognition:GetCelebrityRecognition on * (Rekognition data-plane resources such as collections, users, and jobs are routinely created at runtime, so their identifiers are unknown at deploy time). Provide the implementation with Effect.provide(AWS.Rekognition.GetCelebrityRecognitionHttp).

// init
const getCelebrityRecognition = yield* AWS.Rekognition.GetCelebrityRecognition();
// runtime
const results = yield* getCelebrityRecognition({ JobId: jobId });
if (results.JobStatus === "SUCCEEDED") {
// consume the detections
}