Learn R Programming

paws (version 0.1.12)

comprehendmedical: AWS Comprehend Medical

Description

Amazon Comprehend Medical extracts structured information from unstructured clinical text. Use these actions to gain insight in your documents.

Usage

comprehendmedical(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- comprehendmedical(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

describe_entities_detection_v2_jobGets the properties associated with a medical entities detection job
describe_icd10cm_inference_jobGets the properties associated with an InferICD10CM job
describe_phi_detection_jobGets the properties associated with a protected health information (PHI) detection job
describe_rx_norm_inference_jobGets the properties associated with an InferRxNorm job
detect_entitiesThe DetectEntities operation is deprecated
detect_entities_v2Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information
detect_phiInspects the clinical text for protected health information (PHI) entities and returns the entity category, location, and confidence score for each entity
infer_icd10cmInferICD10CM detects medical conditions as entities listed in a patient record and links those entities to normalized concept identifiers in the ICD-10-CM knowledge base from the Centers for Disease Control
infer_rx_normInferRxNorm detects medications as entities listed in a patient record and links to the normalized concept identifiers in the RxNorm database from the National Library of Medicine
list_entities_detection_v2_jobsGets a list of medical entity detection jobs that you have submitted
list_icd10cm_inference_jobsGets a list of InferICD10CM jobs that you have submitted
list_phi_detection_jobsGets a list of protected health information (PHI) detection jobs that you have submitted
list_rx_norm_inference_jobsGets a list of InferRxNorm jobs that you have submitted
start_entities_detection_v2_jobStarts an asynchronous medical entity detection job for a collection of documents
start_icd10cm_inference_jobStarts an asynchronous job to detect medical conditions and link them to the ICD-10-CM ontology
start_phi_detection_jobStarts an asynchronous job to detect protected health information (PHI)
start_rx_norm_inference_jobStarts an asynchronous job to detect medication entities and link them to the RxNorm ontology
stop_entities_detection_v2_jobStops a medical entities detection job in progress
stop_icd10cm_inference_jobStops an InferICD10CM inference job in progress
stop_phi_detection_jobStops a protected health information (PHI) detection job in progress
stop_rx_norm_inference_jobStops an InferRxNorm inference job in progress

Examples

Run this code
if (FALSE) {
svc <- comprehendmedical()
svc$describe_entities_detection_v2_job(
  Foo = 123
)
}

Run the code above in your browser using DataLab