Skip to content

Commit e61488b

Browse files
author
AWS
committed
Amazon Transcribe Streaming Service Update: This release adds custom language support for streaming transcription.
1 parent 014c0cb commit e61488b

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Transcribe Streaming Service",
4+
"contributor": "",
5+
"description": "This release adds custom language support for streaming transcription."
6+
}

services/transcribestreaming/src/main/resources/codegen-resources/service-2.json

+18-1
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,12 @@
416416
"documentation":"<p>Represents the transcription result stream from Amazon Transcribe Medical to your application.</p>",
417417
"eventstream":true
418418
},
419+
"ModelName":{
420+
"type":"string",
421+
"max":200,
422+
"min":1,
423+
"pattern":"^[0-9a-zA-Z._-]+"
424+
},
419425
"NumberOfChannels":{
420426
"type":"integer",
421427
"min":2
@@ -758,9 +764,15 @@
758764
},
759765
"PiiEntityTypes":{
760766
"shape":"PiiEntityTypes",
761-
"documentation":"<p>List the PII entity types you want to identify or redact. In order to specify entity types, you must have either <code>ContentIdentificationType</code> or <code>ContentRedactionType</code> enabled.</p> <p> <code>PIIEntityTypes</code> must be comma-separated; the available values are: <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING</code>, <code>CREDIT_DEBIT_NUMBER</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code>, <code>PIN</code>, <code>EMAIL</code>, <code>ADDRESS</code>, <code>NAME</code>, <code>PHONE</code>, <code>SSN</code>, and <code>ALL</code>.</p> <p> <code>PiiEntityTypes</code> is an optional parameter with a default value of <code>ALL</code>.</p>",
767+
"documentation":"<p>List the PII entity types you want to identify or redact. In order to specify entity types, you must have either <code>ContentIdentificationType</code> or <code>ContentRedactionType</code> enabled.</p> <p> <code>PiiEntityTypes</code> is an optional parameter with a default value of <code>ALL</code>.</p>",
762768
"location":"header",
763769
"locationName":"x-amzn-transcribe-pii-entity-types"
770+
},
771+
"LanguageModelName":{
772+
"shape":"ModelName",
773+
"documentation":"<p>The name of the language model you want to use.</p>",
774+
"location":"header",
775+
"locationName":"x-amzn-transcribe-language-model-name"
764776
}
765777
},
766778
"payload":"AudioStream"
@@ -867,6 +879,11 @@
867879
"documentation":"<p>Lists the PII entity types you specified in your request.</p>",
868880
"location":"header",
869881
"locationName":"x-amzn-transcribe-pii-entity-types"
882+
},
883+
"LanguageModelName":{
884+
"shape":"ModelName",
885+
"location":"header",
886+
"locationName":"x-amzn-transcribe-language-model-name"
870887
}
871888
},
872889
"payload":"TranscriptResultStream"

0 commit comments

Comments
 (0)