Skip to content

GetFaceDetection

Source: src/AWS/Rekognition/GetFaceDetection.ts

Runtime binding for rekognition:GetFaceDetection — get the results of an asynchronous faces detection job started by StartFaceDetection.

The binding takes no arguments and grants the function rekognition:GetFaceDetection 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.GetFaceDetectionHttp).

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