interface CfnMedicalTranscriptionJobProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transcribe.CfnMedicalTranscriptionJobProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstranscribe#CfnMedicalTranscriptionJobProps |
Java | software.amazon.awscdk.services.transcribe.CfnMedicalTranscriptionJobProps |
Python | aws_cdk.aws_transcribe.CfnMedicalTranscriptionJobProps |
TypeScript | aws-cdk-lib » aws_transcribe » CfnMedicalTranscriptionJobProps |
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 { aws_transcribe as transcribe } from 'aws-cdk-lib';
const cfnMedicalTranscriptionJobProps: transcribe.CfnMedicalTranscriptionJobProps = {
languageCode: 'languageCode',
media: {
mediaFileUri: 'mediaFileUri',
},
medicalTranscriptionJobName: 'medicalTranscriptionJobName',
specialty: 'specialty',
type: 'type',
// the properties below are optional
mediaFormat: 'mediaFormat',
mediaSampleRateHertz: 123,
settings: {
channelIdentification: false,
showAlternatives: false,
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| language | string | The language code for the language spoken in the input media file. |
| media | IResolvable | Media | |
| medical | string | A unique name for the medical transcription job. |
| specialty | string | The medical specialty represented in the media. |
| type | string | Whether the input media is a dictation or conversation. |
| media | string | The format of the input media file. |
| media | number | The sample rate of the audio in hertz. |
| settings? | IResolvable | Medical | |
| tags? | Cfn[] | Tags associated with the medical transcription job. |
languageCode
Type:
string
The language code for the language spoken in the input media file.
Must be en-US.
media
Type:
IResolvable | Media
medicalTranscriptionJobName
Type:
string
A unique name for the medical transcription job.
specialty
Type:
string
The medical specialty represented in the media.
type
Type:
string
Whether the input media is a dictation or conversation.
mediaFormat?
Type:
string
(optional)
The format of the input media file.
mediaSampleRateHertz?
Type:
number
(optional)
The sample rate of the audio in hertz.
settings?
Type:
IResolvable | Medical
(optional)
tags?
Type:
Cfn[]
(optional)
Tags associated with the medical transcription job.

.NET
Go
Java
Python
TypeScript