Interface CfnMedicalTranscriptionJobMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMedicalTranscriptionJobMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-08-13T16:20:29.575Z")
@Stability(Stable)
public interface CfnMedicalTranscriptionJobMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMedicalTranscriptionJobPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.transcribe.*;
CfnMedicalTranscriptionJobMixinProps cfnMedicalTranscriptionJobMixinProps = CfnMedicalTranscriptionJobMixinProps.builder()
.languageCode("languageCode")
.media(MediaProperty.builder()
.mediaFileUri("mediaFileUri")
.build())
.mediaFormat("mediaFormat")
.mediaSampleRateHertz(123)
.medicalTranscriptionJobName("medicalTranscriptionJobName")
.settings(MedicalTranscriptionSettingProperty.builder()
.channelIdentification(false)
.showAlternatives(false)
.build())
.specialty("specialty")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMedicalTranscriptionJobMixinPropsstatic final classAn implementation forCfnMedicalTranscriptionJobMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe language code for the language spoken in the input media file.default ObjectgetMedia()Returns union: eitherIResolvableorCfnMedicalTranscriptionJobPropsMixin.MediaPropertydefault StringThe format of the input media file.default NumberThe sample rate of the audio in hertz.default StringA unique name for the medical transcription job.default ObjectReturns union: eitherIResolvableorCfnMedicalTranscriptionJobPropsMixin.MedicalTranscriptionSettingPropertydefault StringThe medical specialty represented in the media.getTags()Tags associated with the medical transcription job.default StringgetType()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: eitherIResolvableorCfnMedicalTranscriptionJobPropsMixin.MediaProperty- See Also:
-
getMediaFormat
The format of the input media file.- See Also:
-
getMediaSampleRateHertz
The sample rate of the audio in hertz.- See Also:
-
getMedicalTranscriptionJobName
A unique name for the medical transcription job.- See Also:
-
getSettings
Returns union: eitherIResolvableorCfnMedicalTranscriptionJobPropsMixin.MedicalTranscriptionSettingProperty- See Also:
-
getSpecialty
The medical specialty represented in the media.- See Also:
-
getTags
Tags associated with the medical transcription job.- See Also:
-
getType
Whether the input media is a dictation or conversation.- See Also:
-
builder
-