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).
Video Analysis
Section titled “Video Analysis”// initconst getCelebrityRecognition = yield* AWS.Rekognition.GetCelebrityRecognition();
// runtimeconst results = yield* getCelebrityRecognition({ JobId: jobId });if (results.JobStatus === "SUCCEEDED") { // consume the detections}