Class: Aws::ChimeSDKMeetings::Types::TranscriptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMeetings::Types::TranscriptionConfiguration
- Defined in:
- gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb
Overview
Note:
When making an API call, you may pass TranscriptionConfiguration data as a hash:
{
engine_transcribe_settings: {
language_code: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
vocabulary_filter_method: "remove", # accepts remove, mask, tag
vocabulary_filter_name: "String",
vocabulary_name: "String",
region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
enable_partial_results_stabilization: false,
partial_results_stability: "low", # accepts low, medium, high
content_identification_type: "PII", # accepts PII
content_redaction_type: "PII", # accepts PII
pii_entity_types: "TranscribePiiEntityTypes",
language_model_name: "TranscribeLanguageModelName",
identify_language: false,
language_options: "TranscribeLanguageOptions",
preferred_language: "en-US", # accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
},
engine_transcribe_medical_settings: {
language_code: "en-US", # required, accepts en-US
specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
vocabulary_name: "String",
region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
content_identification_type: "PHI", # accepts PHI
},
}
The configuration for the current transcription operation. Must
contain EngineTranscribeSettings
or
EngineTranscribeMedicalSettings
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#engine_transcribe_medical_settings ⇒ Types::EngineTranscribeMedicalSettings
The transcription configuration settings passed to Amazon Transcribe Medical.
-
#engine_transcribe_settings ⇒ Types::EngineTranscribeSettings
The transcription configuration settings passed to Amazon Transcribe.
Instance Attribute Details
#engine_transcribe_medical_settings ⇒ Types::EngineTranscribeMedicalSettings
The transcription configuration settings passed to Amazon Transcribe Medical.
1343 1344 1345 1346 1347 1348 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 1343 class TranscriptionConfiguration < Struct.new( :engine_transcribe_settings, :engine_transcribe_medical_settings) SENSITIVE = [] include Aws::Structure end |
#engine_transcribe_settings ⇒ Types::EngineTranscribeSettings
The transcription configuration settings passed to Amazon Transcribe.
1343 1344 1345 1346 1347 1348 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 1343 class TranscriptionConfiguration < Struct.new( :engine_transcribe_settings, :engine_transcribe_medical_settings) SENSITIVE = [] include Aws::Structure end |