executeAWSRekognition method

Future<String> executeAWSRekognition(
  1. String fileId
)

Execute AWS Rekognition Add-On for a given target to detect labels in an image. Note: Detected labels are stored in the file's appdata.

See https://uploadcare.com/api-refs/rest-api/v0.7.0/#operation/awsRekognitionExecute

Implementation

Future<String> executeAWSRekognition(String fileId) async {
  return await _execute(
    pathname: '/addons/aws_rekognition_detect_labels/execute/',
    params: {
      'target': fileId,
    },
  );
}