Skip to content

Commit fee8f8a

Browse files
author
AWS
committed
Amazon Chime Update: Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
1 parent 0916358 commit fee8f8a

File tree

2 files changed

+67
-1
lines changed

2 files changed

+67
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Chime",
4+
"contributor": "",
5+
"description": "Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models."
6+
}

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

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7047,6 +7047,10 @@
70477047
"Region":{
70487048
"shape":"TranscribeMedicalRegion",
70497049
"documentation":"<p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region.</p>"
7050+
},
7051+
"ContentIdentificationType":{
7052+
"shape":"TranscribeMedicalContentIdentificationType",
7053+
"documentation":"<p>Set this field to <code>PHI</code> to identify personal health information in the transcription output.</p>"
70507054
}
70517055
},
70527056
"documentation":"<p>Settings specific to the Amazon Transcribe Medical engine.</p>"
@@ -7074,6 +7078,30 @@
70747078
"Region":{
70757079
"shape":"TranscribeRegion",
70767080
"documentation":"<p>The AWS Region passed to Amazon Transcribe. If you don't specify a Region, Amazon Chime uses the meeting's Region.</p>"
7081+
},
7082+
"EnablePartialResultsStabilization":{
7083+
"shape":"Boolean",
7084+
"documentation":"<p>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.</p>"
7085+
},
7086+
"PartialResultsStability":{
7087+
"shape":"TranscribePartialResultsStability",
7088+
"documentation":"<p>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.</p>"
7089+
},
7090+
"ContentIdentificationType":{
7091+
"shape":"TranscribeContentIdentificationType",
7092+
"documentation":"<p>Set this field to <code>PII</code> to identify personal health information in the transcription output.</p>"
7093+
},
7094+
"ContentRedactionType":{
7095+
"shape":"TranscribeContentRedactionType",
7096+
"documentation":"<p>Set this field to <code>PII</code> to redact personally identifiable information in the transcription output. Content redaction is performed only upon complete transcription of the audio segments.</p>"
7097+
},
7098+
"PiiEntityTypes":{
7099+
"shape":"TranscribePiiEntityTypes",
7100+
"documentation":"<p>Lists the PII entity types you want to identify or redact. To specify entity types, you must enable <code>ContentIdentificationType</code> or <code>ContentRedactionType</code>.</p> <p> <code>PIIEntityTypes</code> must be comma-separated. The available values are: <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING, 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>"
7101+
},
7102+
"LanguageModelName":{
7103+
"shape":"TranscribeLanguageModelName",
7104+
"documentation":"<p>The name of the language model used during transcription.</p>"
70777105
}
70787106
},
70797107
"documentation":"<p>Settings specific to the Amazon Transcribe engine.</p>"
@@ -11288,6 +11316,14 @@
1128811316
"min":3,
1128911317
"pattern":"^8(00|33|44|55|66|77|88)$"
1129011318
},
11319+
"TranscribeContentIdentificationType":{
11320+
"type":"string",
11321+
"enum":["PII"]
11322+
},
11323+
"TranscribeContentRedactionType":{
11324+
"type":"string",
11325+
"enum":["PII"]
11326+
},
1129111327
"TranscribeLanguageCode":{
1129211328
"type":"string",
1129311329
"enum":[
@@ -11305,6 +11341,16 @@
1130511341
"zh-CN"
1130611342
]
1130711343
},
11344+
"TranscribeLanguageModelName":{
11345+
"type":"string",
11346+
"max":200,
11347+
"min":1,
11348+
"pattern":"^[0-9a-zA-Z._-]+"
11349+
},
11350+
"TranscribeMedicalContentIdentificationType":{
11351+
"type":"string",
11352+
"enum":["PHI"]
11353+
},
1130811354
"TranscribeMedicalLanguageCode":{
1130911355
"type":"string",
1131011356
"enum":["en-US"]
@@ -11339,6 +11385,20 @@
1133911385
"DICTATION"
1134011386
]
1134111387
},
11388+
"TranscribePartialResultsStability":{
11389+
"type":"string",
11390+
"enum":[
11391+
"low",
11392+
"medium",
11393+
"high"
11394+
]
11395+
},
11396+
"TranscribePiiEntityTypes":{
11397+
"type":"string",
11398+
"max":300,
11399+
"min":1,
11400+
"pattern":"^[A-Z_, ]+"
11401+
},
1134211402
"TranscribeRegion":{
1134311403
"type":"string",
1134411404
"enum":[
@@ -12463,5 +12523,5 @@
1246312523
"documentation":"<p>The Amazon Chime Voice Connector settings. Includes any Amazon S3 buckets designated for storing call detail records.</p>"
1246412524
}
1246512525
},
12466-
"documentation":"<p>The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see <a href=\"https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html\"> Using the Amazon Chime SDK </a> in the <i>Amazon Chime Developer Guide</i>.</p> <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p> <dl> <dt>Using an AWS SDK</dt> <dd> <p> You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the <a href=\"http://aws.amazon.com/developer/\">AWS Developer Center</a>. </p> </dd> <dt>Using the AWS CLI</dt> <dd> <p>Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/installing.html\">Installing the AWS Command Line Interface</a> in the <i>AWS Command Line Interface User Guide</i>. For a list of available Amazon Chime commands, see the <a href=\"https://docs.aws.amazon.com/cli/latest/reference/chime/index.html\">Amazon Chime commands</a> in the <i>AWS CLI Command Reference</i>. </p> </dd> <dt>Using REST APIs</dt> <dd> <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports signature version 4. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html\">Signature Version 4 Signing Process</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>When making REST API calls, use the service name <code>chime</code> and REST endpoint <code>https://service.chime.aws.amazon.com</code>.</p> </dd> </dl> <p>Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see <a href=\"https://docs.aws.amazon.com/chime/latest/ag/security-iam.html\">Identity and Access Management for Amazon Chime</a> in the <i>Amazon Chime Administration Guide</i>.</p>"
12526+
"documentation":"<p>The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes API actions for use with the Amazon Chime SDK, which developers use to build their own communication applications. For more information about the Amazon Chime SDK, see <a href=\"https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html\"> Using the Amazon Chime SDK </a> in the <i>Amazon Chime Developer Guide</i>.</p> <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p> <dl> <dt>Using an AWS SDK</dt> <dd> <p> You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the <a href=\"http://aws.amazon.com/developer/\">AWS Developer Center</a>. </p> </dd> <dt>Using the AWS CLI</dt> <dd> <p>Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/installing.html\">Installing the AWS Command Line Interface</a> in the <i>AWS Command Line Interface User Guide</i>. For a list of available Amazon Chime commands, see the <a href=\"https://docs.aws.amazon.com/cli/latest/reference/chime/index.html\">Amazon Chime commands</a> in the <i>AWS CLI Command Reference</i>. </p> </dd> <dt>Using REST APIs</dt> <dd> <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports signature version 4. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html\">Signature Version 4 Signing Process</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>When making REST API calls, use the service name <code>chime</code> and REST endpoint <code>https://service.chime.aws.amazon.com</code>.</p> </dd> </dl> <p>Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see <a href=\"https://docs.aws.amazon.com/chime/latest/ag/security-iam.html\">Identity and Access Management for Amazon Chime</a> in the <i>Amazon Chime Administration Guide</i>.</p>"
1246712527
}

0 commit comments

Comments
 (0)