Class: Aws::Chime::Types::EngineTranscribeSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::EngineTranscribeSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chime/types.rb
Overview
Settings specific to the Amazon Transcribe engine.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_identification_type ⇒ String
Set this field to `PII` to identify personally identifiable information in the transcription output.
-
#content_redaction_type ⇒ String
Set this field to `PII` to redact personally identifiable information in the transcription output.
-
#enable_partial_results_stabilization ⇒ Boolean
Generates partial transcription results that are less likely to change as meeting attendees speak.
-
#language_code ⇒ String
The language code specified for the Amazon Transcribe engine.
-
#language_model_name ⇒ String
The name of the language model used during transcription.
-
#partial_results_stability ⇒ String
The stabity level of a partial results transcription.
-
#pii_entity_types ⇒ String
Lists the PII entity types you want to identify or redact.
-
#region ⇒ String
The AWS Region passed to Amazon Transcribe.
-
#vocabulary_filter_method ⇒ String
The filtering method passed to Amazon Transcribe.
-
#vocabulary_filter_name ⇒ String
The name of the vocabulary filter passed to Amazon Transcribe.
-
#vocabulary_name ⇒ String
The name of the vocabulary passed to Amazon Transcribe.
Instance Attribute Details
#content_identification_type ⇒ String
Set this field to `PII` to identify personally identifiable information in the transcription output.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#content_redaction_type ⇒ String
Set this field to `PII` to redact personally identifiable information in the transcription output. Content redaction is performed only upon complete transcription of the audio segments.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#enable_partial_results_stabilization ⇒ Boolean
Generates partial transcription results that are less likely to change as meeting attendees speak. It does so by only allowing the last few words from the partial results to change.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#language_code ⇒ String
The language code specified for the Amazon Transcribe engine.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#language_model_name ⇒ String
The name of the language model used during transcription.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#partial_results_stability ⇒ String
The stabity level of a partial results transcription. Determines how stable you want the transcription results to be. A higher level means the transcription results are less likely to change.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#pii_entity_types ⇒ String
Lists the PII entity types you want to identify or redact. To specify entity types, you must enable `ContentIdentificationType` or `ContentRedactionType`.
`PIIEntityTypes` must be comma-separated. The available values are: `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`, `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`, `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
`PiiEntityTypes` is an optional parameter with a default value of `ALL`.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The AWS Region passed to Amazon Transcribe. If you don't specify a Region, Amazon Chime uses the meeting's Region.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#vocabulary_filter_method ⇒ String
The filtering method passed to Amazon Transcribe.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#vocabulary_filter_name ⇒ String
The name of the vocabulary filter passed to Amazon Transcribe.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |
#vocabulary_name ⇒ String
The name of the vocabulary passed to Amazon Transcribe.
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 |
# File 'lib/aws-sdk-chime/types.rb', line 3620 class EngineTranscribeSettings < Struct.new( :language_code, :vocabulary_filter_method, :vocabulary_filter_name, :vocabulary_name, :region, :enable_partial_results_stabilization, :partial_results_stability, :content_identification_type, :content_redaction_type, :pii_entity_types, :language_model_name) SENSITIVE = [] include Aws::Structure end |