Interface CfnMedicalTranscriptionJobProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMedicalTranscriptionJobProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:13.334Z")
@Stability(Stable)
public interface CfnMedicalTranscriptionJobProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnMedicalTranscriptionJob.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.transcribe.*;
CfnMedicalTranscriptionJobProps cfnMedicalTranscriptionJobProps = CfnMedicalTranscriptionJobProps.builder()
.languageCode("languageCode")
.media(MediaProperty.builder()
.mediaFileUri("mediaFileUri")
.build())
.medicalTranscriptionJobName("medicalTranscriptionJobName")
.specialty("specialty")
.type("type")
// the properties below are optional
.mediaFormat("mediaFormat")
.mediaSampleRateHertz(123)
.settings(MedicalTranscriptionSettingProperty.builder()
.channelIdentification(false)
.showAlternatives(false)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMedicalTranscriptionJobPropsstatic final classAn implementation forCfnMedicalTranscriptionJobProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The language code for the language spoken in the input media file.getMedia()Returns union: eitherIResolvableorCfnMedicalTranscriptionJob.MediaPropertydefault StringThe format of the input media file.default NumberThe sample rate of the audio in hertz.A unique name for the medical transcription job.default ObjectReturns union: eitherIResolvableorCfnMedicalTranscriptionJob.MedicalTranscriptionSettingPropertyThe medical specialty represented in the media.getTags()Tags associated with the medical transcription job.getType()Whether the input media is a dictation or conversation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLanguageCode
The language code for the language spoken in the input media file.Must be en-US.
- See Also:
-
getMedia
Returns union: eitherIResolvableorCfnMedicalTranscriptionJob.MediaProperty- See Also:
-
getMedicalTranscriptionJobName
A unique name for the medical transcription job.- See Also:
-
getSpecialty
The medical specialty represented in the media.- See Also:
-
getType
Whether the input media is a dictation or conversation.- See Also:
-
getMediaFormat
The format of the input media file.- See Also:
-
getMediaSampleRateHertz
The sample rate of the audio in hertz.- See Also:
-
getSettings
Returns union: eitherIResolvableorCfnMedicalTranscriptionJob.MedicalTranscriptionSettingProperty- See Also:
-
getTags
Tags associated with the medical transcription job.- See Also:
-
builder
-