#[non_exhaustive]pub struct EngineTranscribeMedicalSettings {
pub language_code: TranscribeMedicalLanguageCode,
pub specialty: TranscribeMedicalSpecialty,
pub type: TranscribeMedicalType,
pub vocabulary_name: Option<String>,
pub region: Option<TranscribeMedicalRegion>,
pub content_identification_type: Option<TranscribeMedicalContentIdentificationType>,
}Expand description
Settings specific to the Amazon Transcribe Medical engine.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.language_code: TranscribeMedicalLanguageCodeThe language code specified for the Amazon Transcribe Medical engine.
specialty: TranscribeMedicalSpecialtyThe specialty specified for the Amazon Transcribe Medical engine.
type: TranscribeMedicalTypeThe type of transcription.
vocabulary_name: Option<String>The name of the vocabulary passed to Amazon Transcribe Medical.
region: Option<TranscribeMedicalRegion>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region.
content_identification_type: Option<TranscribeMedicalContentIdentificationType>Labels all personally identifiable information (PII) identified in your transcript. If you don't include PiiEntityTypes, all PII is identified.
You can’t set ContentIdentificationType and ContentRedactionType.
Implementations§
source§impl EngineTranscribeMedicalSettings
impl EngineTranscribeMedicalSettings
sourcepub fn language_code(&self) -> &TranscribeMedicalLanguageCode
pub fn language_code(&self) -> &TranscribeMedicalLanguageCode
The language code specified for the Amazon Transcribe Medical engine.
sourcepub fn specialty(&self) -> &TranscribeMedicalSpecialty
pub fn specialty(&self) -> &TranscribeMedicalSpecialty
The specialty specified for the Amazon Transcribe Medical engine.
sourcepub fn type(&self) -> &TranscribeMedicalType
pub fn type(&self) -> &TranscribeMedicalType
The type of transcription.
sourcepub fn vocabulary_name(&self) -> Option<&str>
pub fn vocabulary_name(&self) -> Option<&str>
The name of the vocabulary passed to Amazon Transcribe Medical.
sourcepub fn region(&self) -> Option<&TranscribeMedicalRegion>
pub fn region(&self) -> Option<&TranscribeMedicalRegion>
The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region.
sourcepub fn content_identification_type(
&self
) -> Option<&TranscribeMedicalContentIdentificationType>
pub fn content_identification_type( &self ) -> Option<&TranscribeMedicalContentIdentificationType>
Labels all personally identifiable information (PII) identified in your transcript. If you don't include PiiEntityTypes, all PII is identified.
You can’t set ContentIdentificationType and ContentRedactionType.
source§impl EngineTranscribeMedicalSettings
impl EngineTranscribeMedicalSettings
sourcepub fn builder() -> EngineTranscribeMedicalSettingsBuilder
pub fn builder() -> EngineTranscribeMedicalSettingsBuilder
Creates a new builder-style object to manufacture EngineTranscribeMedicalSettings.
Trait Implementations§
source§impl Clone for EngineTranscribeMedicalSettings
impl Clone for EngineTranscribeMedicalSettings
source§fn clone(&self) -> EngineTranscribeMedicalSettings
fn clone(&self) -> EngineTranscribeMedicalSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for EngineTranscribeMedicalSettings
impl PartialEq for EngineTranscribeMedicalSettings
source§fn eq(&self, other: &EngineTranscribeMedicalSettings) -> bool
fn eq(&self, other: &EngineTranscribeMedicalSettings) -> bool
self and other values to be equal, and is used
by ==.