Struct aws_sdk_transcribe::model::MedicalTranscriptionJob
source · [−]#[non_exhaustive]pub struct MedicalTranscriptionJob {Show 16 fields
pub medical_transcription_job_name: Option<String>,
pub transcription_job_status: Option<TranscriptionJobStatus>,
pub language_code: Option<LanguageCode>,
pub media_sample_rate_hertz: Option<i32>,
pub media_format: Option<MediaFormat>,
pub media: Option<Media>,
pub transcript: Option<MedicalTranscript>,
pub start_time: Option<DateTime>,
pub creation_time: Option<DateTime>,
pub completion_time: Option<DateTime>,
pub failure_reason: Option<String>,
pub settings: Option<MedicalTranscriptionSetting>,
pub content_identification_type: Option<MedicalContentIdentificationType>,
pub specialty: Option<Specialty>,
pub type: Option<Type>,
pub tags: Option<Vec<Tag>>,
}
Expand description
The data structure that contains the information for a medical transcription job.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.medical_transcription_job_name: Option<String>
The name for a given medical transcription job.
transcription_job_status: Option<TranscriptionJobStatus>
The completion status of a medical transcription job.
language_code: Option<LanguageCode>
The language code for the language spoken in the source audio file. US English (en-US) is the only supported language for medical transcriptions. Any other value you enter for language code results in a BadRequestException
error.
media_sample_rate_hertz: Option<i32>
The sample rate, in Hertz, of the source audio containing medical information.
If you don't specify the sample rate, Amazon Transcribe Medical determines it for you. If you choose to specify the sample rate, it must match the rate detected by Amazon Transcribe Medical.
media_format: Option<MediaFormat>
The format of the input media file.
media: Option<Media>
Describes the input media file in a transcription request.
transcript: Option<MedicalTranscript>
An object that contains the MedicalTranscript
. The MedicalTranscript
contains the TranscriptFileUri
.
start_time: Option<DateTime>
A timestamp that shows when the job started processing.
creation_time: Option<DateTime>
A timestamp that shows when the job was created.
completion_time: Option<DateTime>
A timestamp that shows when the job was completed.
failure_reason: Option<String>
If the TranscriptionJobStatus
field is FAILED
, this field contains information about why the job failed.
The FailureReason
field contains one of the following values:
-
Unsupported media format
- The media format specified in theMediaFormat
field of the request isn't valid. See the description of theMediaFormat
field for a list of valid values. -
The media format provided does not match the detected media format
- The media format of the audio file doesn't match the format specified in theMediaFormat
field in the request. Check the media format of your media file and make sure the two values match. -
Invalid sample rate for audio file
- The sample rate specified in theMediaSampleRateHertz
of the request isn't valid. The sample rate must be between 8,000 and 48,000 Hertz. -
The sample rate provided does not match the detected sample rate
- The sample rate in the audio file doesn't match the sample rate specified in theMediaSampleRateHertz
field in the request. Check the sample rate of your media file and make sure that the two values match. -
Invalid file size: file size too large
- The size of your audio file is larger than what Amazon Transcribe Medical can process. For more information, see Guidelines and Quotas in the Amazon Transcribe Medical Guide. -
Invalid number of channels: number of channels too large
- Your audio contains more channels than Amazon Transcribe Medical is configured to process. To request additional channels, see Amazon Transcribe Medical Endpoints and Quotas in the Amazon Web Services General Reference.
settings: Option<MedicalTranscriptionSetting>
Object that contains object.
content_identification_type: Option<MedicalContentIdentificationType>
Shows the type of content that you've configured Amazon Transcribe Medical to identify in a transcription job. If the value is PHI
, you've configured the job to identify personal health information (PHI) in the transcription output.
specialty: Option<Specialty>
The medical specialty of any clinicians providing a dictation or having a conversation. Refer to Transcribing a medical conversationfor a list of supported specialties.
type: Option<Type>
The type of speech in the transcription job. CONVERSATION
is generally used for patient-physician dialogues. DICTATION
is the setting for physicians speaking their notes after seeing a patient. For more information, see What is Amazon Transcribe Medical?.
A key:value pair assigned to a given medical transcription job.
Implementations
The name for a given medical transcription job.
The completion status of a medical transcription job.
The language code for the language spoken in the source audio file. US English (en-US) is the only supported language for medical transcriptions. Any other value you enter for language code results in a BadRequestException
error.
The sample rate, in Hertz, of the source audio containing medical information.
If you don't specify the sample rate, Amazon Transcribe Medical determines it for you. If you choose to specify the sample rate, it must match the rate detected by Amazon Transcribe Medical.
The format of the input media file.
Describes the input media file in a transcription request.
An object that contains the MedicalTranscript
. The MedicalTranscript
contains the TranscriptFileUri
.
A timestamp that shows when the job started processing.
A timestamp that shows when the job was created.
A timestamp that shows when the job was completed.
If the TranscriptionJobStatus
field is FAILED
, this field contains information about why the job failed.
The FailureReason
field contains one of the following values:
-
Unsupported media format
- The media format specified in theMediaFormat
field of the request isn't valid. See the description of theMediaFormat
field for a list of valid values. -
The media format provided does not match the detected media format
- The media format of the audio file doesn't match the format specified in theMediaFormat
field in the request. Check the media format of your media file and make sure the two values match. -
Invalid sample rate for audio file
- The sample rate specified in theMediaSampleRateHertz
of the request isn't valid. The sample rate must be between 8,000 and 48,000 Hertz. -
The sample rate provided does not match the detected sample rate
- The sample rate in the audio file doesn't match the sample rate specified in theMediaSampleRateHertz
field in the request. Check the sample rate of your media file and make sure that the two values match. -
Invalid file size: file size too large
- The size of your audio file is larger than what Amazon Transcribe Medical can process. For more information, see Guidelines and Quotas in the Amazon Transcribe Medical Guide. -
Invalid number of channels: number of channels too large
- Your audio contains more channels than Amazon Transcribe Medical is configured to process. To request additional channels, see Amazon Transcribe Medical Endpoints and Quotas in the Amazon Web Services General Reference.
Object that contains object.
Shows the type of content that you've configured Amazon Transcribe Medical to identify in a transcription job. If the value is PHI
, you've configured the job to identify personal health information (PHI) in the transcription output.
The medical specialty of any clinicians providing a dictation or having a conversation. Refer to Transcribing a medical conversationfor a list of supported specialties.
The type of speech in the transcription job. CONVERSATION
is generally used for patient-physician dialogues. DICTATION
is the setting for physicians speaking their notes after seeing a patient. For more information, see What is Amazon Transcribe Medical?.
A key:value pair assigned to a given medical transcription job.
Creates a new builder-style object to manufacture MedicalTranscriptionJob
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for MedicalTranscriptionJob
impl Send for MedicalTranscriptionJob
impl Sync for MedicalTranscriptionJob
impl Unpin for MedicalTranscriptionJob
impl UnwindSafe for MedicalTranscriptionJob
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more