CfnMedicalTranscriptionJobPropsMixin
- class aws_cdk.cfn_property_mixins.aws_transcribe.CfnMedicalTranscriptionJobPropsMixin(props, *, strategy=None)
Bases:
MixinResource type definition for an Amazon Transcribe Medical Transcription Job.
- See:
- CloudformationResource:
AWS::Transcribe::MedicalTranscriptionJob
- Mixin:
true
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_transcribe as transcribe import aws_cdk as cdk # merge_strategy: cdk.IMergeStrategy cfn_medical_transcription_job_props_mixin = transcribe.CfnMedicalTranscriptionJobPropsMixin(transcribe.CfnMedicalTranscriptionJobMixinProps( language_code="languageCode", media=transcribe.CfnMedicalTranscriptionJobPropsMixin.MediaProperty( media_file_uri="mediaFileUri" ), media_format="mediaFormat", media_sample_rate_hertz=123, medical_transcription_job_name="medicalTranscriptionJobName", settings=transcribe.CfnMedicalTranscriptionJobPropsMixin.MedicalTranscriptionSettingProperty( channel_identification=False, show_alternatives=False ), specialty="specialty", tags=[cdk.CfnTag( key="key", value="value" )], type="type" ), strategy=merge_strategy )
Create a mixin to apply properties to
AWS::Transcribe::MedicalTranscriptionJob.- Parameters:
props (
Union[CfnMedicalTranscriptionJobMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
None
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['languageCode', 'media', 'mediaFormat', 'mediaSampleRateHertz', 'medicalTranscriptionJobName', 'settings', 'specialty', 'tags', 'type']
Static Methods
- classmethod is_mixin(x)
Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
MediaProperty
- class CfnMedicalTranscriptionJobPropsMixin.MediaProperty(*, media_file_uri=None)
Bases:
object- Parameters:
media_file_uri (
Optional[str]) – The Amazon S3 location of the media file.- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_transcribe as transcribe media_property = transcribe.CfnMedicalTranscriptionJobPropsMixin.MediaProperty( media_file_uri="mediaFileUri" )
Attributes
- media_file_uri
The Amazon S3 location of the media file.
MedicalTranscriptProperty
- class CfnMedicalTranscriptionJobPropsMixin.MedicalTranscriptProperty(*, transcript_file_uri=None)
Bases:
object- Parameters:
transcript_file_uri (
Optional[str]) – The Amazon S3 location of the transcript.- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_transcribe as transcribe medical_transcript_property = transcribe.CfnMedicalTranscriptionJobPropsMixin.MedicalTranscriptProperty( transcript_file_uri="transcriptFileUri" )
Attributes
- transcript_file_uri
The Amazon S3 location of the transcript.
MedicalTranscriptionSettingProperty
- class CfnMedicalTranscriptionJobPropsMixin.MedicalTranscriptionSettingProperty(*, channel_identification=None, show_alternatives=None)
Bases:
object- Parameters:
channel_identification (
Union[bool,IResolvable,None]) – Enables channel identification in multi-channel audio.show_alternatives (
Union[bool,IResolvable,None]) – Include alternative transcriptions.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_transcribe as transcribe medical_transcription_setting_property = transcribe.CfnMedicalTranscriptionJobPropsMixin.MedicalTranscriptionSettingProperty( channel_identification=False, show_alternatives=False )
Attributes
- channel_identification
Enables channel identification in multi-channel audio.
- show_alternatives
Include alternative transcriptions.