Skip to content

StartRxNormInferenceJob

Source: src/AWS/ComprehendMedical/StartRxNormInferenceJob.ts

Runtime binding for comprehendmedical:StartRxNormInferenceJob — start an asynchronous RxNorm ontology linking job over a collection of documents in S3. Also grants iam:PassRole (conditioned to comprehendmedical.amazonaws.com) for the job’s data-access role.

Comprehend Medical has no resource-level IAM, so the binding takes no arguments and grants comprehendmedical:StartRxNormInferenceJob on *. Provide the implementation with Effect.provide(AWS.ComprehendMedical.StartRxNormInferenceJobHttp).

// init
const startRxNormInferenceJob = yield* AWS.ComprehendMedical.StartRxNormInferenceJob();
// runtime
const job = yield* startRxNormInferenceJob({
InputDataConfig: { S3Bucket: "my-input-bucket", S3Key: "notes/" },
OutputDataConfig: { S3Bucket: "my-output-bucket" },
DataAccessRoleArn: dataAccessRole.roleArn,
LanguageCode: "en",
});