Class: Aws::Chime::Types::TranscriptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::TranscriptionConfiguration
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass TranscriptionConfiguration data as a hash:
{
engine_transcribe_settings: {
language_code: "en-US", # required, 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
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",
},
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.
9807 9808 9809 9810 9811 9812 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 9807 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.
9807 9808 9809 9810 9811 9812 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 9807 class TranscriptionConfiguration < Struct.new( :engine_transcribe_settings, :engine_transcribe_medical_settings) SENSITIVE = [] include Aws::Structure end |