Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StartKeyPhrasesDetectionJobResponse

import type { StartKeyPhrasesDetectionJobResponse } from "https://aws-api.deno.dev/v0.4/services/comprehend.ts?docs=full";
interface StartKeyPhrasesDetectionJobResponse {
JobArn?: string | null;
JobId?: string | null;
JobStatus?: JobStatus | null;
}

§Properties

§
JobArn?: string | null
[src]

The Amazon Resource Name (ARN) of the key phrase detection job. It is a unique, fully qualified identifier for the job. It includes the AWS account, Region, and the job ID. The format of the ARN is as follows:

arn:<partition>:comprehend:<region>:<account-id>:key-phrases-detection-job/<job-id>

The following is an example job ARN:

arn:aws:comprehend:us-west-2:111122223333:key-phrases-detection-job/1234abcd12ab34cd56ef1234567890ab
§
JobId?: string | null
[src]

The identifier generated for the job. To get the status of a job, use this identifier with the operation.

§
JobStatus?: JobStatus | null
[src]

The status of the job.

  • SUBMITTED - The job has been received and is queued for processing.
  • IN_PROGRESS - Amazon Comprehend is processing the job.
  • COMPLETED - The job was successfully completed and the output is available.
  • FAILED - The job did not complete. To get details, use the operation.