GetLabelDetection
Source:
src/AWS/Rekognition/GetLabelDetection.ts
Runtime binding for rekognition:GetLabelDetection — get the results of an asynchronous labels detection job started by StartLabelDetection.
The binding takes no arguments and grants the function
rekognition:GetLabelDetection 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.GetLabelDetectionHttp).
Video Analysis
Section titled “Video Analysis”// initconst getLabelDetection = yield* AWS.Rekognition.GetLabelDetection();
// runtimeconst results = yield* getLabelDetection({ JobId: jobId });if (results.JobStatus === "SUCCEEDED") { // consume the detections}