StartSNOMEDCTInferenceJob
Source:
src/AWS/ComprehendMedical/StartSNOMEDCTInferenceJob.ts
Runtime binding for comprehendmedical:StartSNOMEDCTInferenceJob — start an asynchronous SNOMED CT 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:StartSNOMEDCTInferenceJob on *. Provide the
implementation with Effect.provide(AWS.ComprehendMedical.StartSNOMEDCTInferenceJobHttp).
Batch SNOMED CT Inference Jobs
Section titled “Batch SNOMED CT Inference Jobs”// initconst startSNOMEDCTInferenceJob = yield* AWS.ComprehendMedical.StartSNOMEDCTInferenceJob();
// runtimeconst job = yield* startSNOMEDCTInferenceJob({ InputDataConfig: { S3Bucket: "my-input-bucket", S3Key: "notes/" }, OutputDataConfig: { S3Bucket: "my-output-bucket" }, DataAccessRoleArn: dataAccessRole.roleArn, LanguageCode: "en",});