기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
다음과 DeleteMedicalTranscriptionJob
함께 사용하십시오. AWS SDK또는 CLI
다음 코드 예제는 DeleteMedicalTranscriptionJob
의 사용 방법을 보여 줍니다.
- .NET
-
- AWS SDK for .NET
-
참고
더 많은 정보가 있습니다 GitHub. 전체 예제를 찾아 설치 및 실행 방법을 알아보십시오. AWS 코드 예제 리포지토리
. /// <summary> /// Delete a medical transcription job. Also deletes the transcript associated with the job. /// </summary> /// <param name="jobName">Name of the medical transcription job to delete.</param> /// <returns>True if successful.</returns> public async Task<bool> DeleteMedicalTranscriptionJob(string jobName) { var response = await _amazonTranscribeService.DeleteMedicalTranscriptionJobAsync( new DeleteMedicalTranscriptionJobRequest() { MedicalTranscriptionJobName = jobName }); return response.HttpStatusCode == HttpStatusCode.OK; }
-
자세한 API 내용은 DeleteMedicalTranscriptionJob을 참조하십시오. AWS SDK for .NET API참조.
-
- CLI
-
- AWS CLI
-
의료 트랜스크립션 작업을 삭제하는 방법
다음
delete-medical-transcription-job
예시에서는 의료 트랜스크립션 작업을 삭제합니다.aws transcribe delete-medical-transcription-job \ --
medical-transcription-job-name
medical-transcription-job-name이 명령은 출력을 생성하지 않습니다.
자세한 내용은 Amazon Transcribe 개발자 안내서를 참조하십시오 DeleteMedicalTranscriptionJob.
-
자세한 API 내용은 을 참조하십시오 DeleteMedicalTranscriptionJob
. AWS CLI 명령 참조.
-
- JavaScript
-
- SDK JavaScript (v3) 에 대한
-
참고
더 많은 정보가 있습니다. GitHub 전체 예제를 찾아 설치 및 실행 방법을 알아보십시오. AWS 코드 예제 리포지토리
. 클라이언트를 생성합니다.
import { TranscribeClient } from "@aws-sdk/client-transcribe"; // Set the AWS Region. const REGION = "REGION"; //e.g. "us-east-1" // Create an Amazon Transcribe service client object. const transcribeClient = new TranscribeClient({ region: REGION }); export { transcribeClient };
의료 트랜스크립션 작업을 삭제합니다.
// Import the required AWS SDK clients and commands for Node.js import { DeleteMedicalTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; import { transcribeClient } from "./libs/transcribeClient.js"; // Set the parameters export const params = { MedicalTranscriptionJobName: "MEDICAL_JOB_NAME", // For example, 'medical_transciption_demo' }; export const run = async () => { try { const data = await transcribeClient.send( new DeleteMedicalTranscriptionJobCommand(params) ); console.log("Success - deleted"); return data; // For unit tests. } catch (err) { console.log("Error", err); } }; run();
-
자세한 API 내용은 DeleteMedicalTranscriptionJob을 참조하십시오. AWS SDK for JavaScript API참조.
전체 목록을 보려면 AWS SDK개발자 가이드 및 코드 예제는 을 참조하십시오SDK와 함께 이 서비스 사용 AWS. 이 항목에는 시작에 대한 정보와 이전 SDK 버전에 대한 세부 정보도 포함되어 있습니다.