Skip to content

Commit

Permalink
Amazon Transcribe Streaming Service Update: This release adds custom …
Browse files Browse the repository at this point in the history
…language support for streaming transcription.
  • Loading branch information
AWS committed Oct 20, 2021
1 parent 014c0cb commit e61488b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "Amazon Transcribe Streaming Service",
"contributor": "",
"description": "This release adds custom language support for streaming transcription."
}
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,12 @@
"documentation":"<p>Represents the transcription result stream from Amazon Transcribe Medical to your application.</p>",
"eventstream":true
},
"ModelName":{
"type":"string",
"max":200,
"min":1,
"pattern":"^[0-9a-zA-Z._-]+"
},
"NumberOfChannels":{
"type":"integer",
"min":2
Expand Down Expand Up @@ -758,9 +764,15 @@
},
"PiiEntityTypes":{
"shape":"PiiEntityTypes",
"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>",
"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>",
"location":"header",
"locationName":"x-amzn-transcribe-pii-entity-types"
},
"LanguageModelName":{
"shape":"ModelName",
"documentation":"<p>The name of the language model you want to use.</p>",
"location":"header",
"locationName":"x-amzn-transcribe-language-model-name"
}
},
"payload":"AudioStream"
Expand Down Expand Up @@ -867,6 +879,11 @@
"documentation":"<p>Lists the PII entity types you specified in your request.</p>",
"location":"header",
"locationName":"x-amzn-transcribe-pii-entity-types"
},
"LanguageModelName":{
"shape":"ModelName",
"location":"header",
"locationName":"x-amzn-transcribe-language-model-name"
}
},
"payload":"TranscriptResultStream"
Expand Down

0 comments on commit e61488b

Please sign in to comment.