Skip to content

Describe Entities Detection V2 Job

comprehendmedical_describe_entities_detection_v2_job R Documentation

Gets the properties associated with a medical entities detection job

Description

Gets the properties associated with a medical entities detection job. Use this operation to get the status of a detection job.

Usage

comprehendmedical_describe_entities_detection_v2_job(JobId)

Arguments

JobId

[required] The identifier that Amazon Comprehend Medical generated for the job. The start_entities_detection_v2_job operation returns this identifier in its response.

Value

A list with the following syntax:

list(
  ComprehendMedicalAsyncJobProperties = list(
    JobId = "string",
    JobName = "string",
    JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"PARTIAL_SUCCESS"|"FAILED"|"STOP_REQUESTED"|"STOPPED",
    Message = "string",
    SubmitTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    ExpirationTime = as.POSIXct(
      "2015-01-01"
    ),
    InputDataConfig = list(
      S3Bucket = "string",
      S3Key = "string"
    ),
    OutputDataConfig = list(
      S3Bucket = "string",
      S3Key = "string"
    ),
    LanguageCode = "en",
    DataAccessRoleArn = "string",
    ManifestFilePath = "string",
    KMSKey = "string",
    ModelVersion = "string"
  )
)

Request syntax

svc$describe_entities_detection_v2_job(
  JobId = "string"
)