Skip to content

GetSegmentDetection

Source: src/AWS/Rekognition/GetSegmentDetection.ts

Runtime binding for rekognition:GetSegmentDetection — get the results of an asynchronous technical cues and shot segments detection job started by StartSegmentDetection.

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

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