Skip to content

Commit 0916358

Browse files
author
AWS
committed
Amazon Chime SDK Meetings 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 71ccbde commit 0916358

File tree

2 files changed

+69
-2
lines changed

2 files changed

+69
-2
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 SDK Meetings",
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/chimesdkmeetings/src/main/resources/codegen-resources/service-2.json

Lines changed: 63 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
{"shape":"ForbiddenException"},
2828
{"shape":"LimitExceededException"}
2929
],
30-
"documentation":"<p>Creates a group of meeting attendees.</p>"
30+
"documentation":"<p>Creates up to 100 attendees for an active Amazon Chime SDK meeting. 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>"
3131
},
3232
"CreateAttendee":{
3333
"name":"CreateAttendee",
@@ -272,6 +272,7 @@
272272
}
273273
}
274274
},
275+
"Boolean":{"type":"boolean"},
275276
"ClientRequestToken":{
276277
"type":"string",
277278
"max":64,
@@ -501,6 +502,10 @@
501502
"Region":{
502503
"shape":"TranscribeMedicalRegion",
503504
"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>"
505+
},
506+
"ContentIdentificationType":{
507+
"shape":"TranscribeMedicalContentIdentificationType",
508+
"documentation":"<p>Set this field to <code>PHI</code> to identify personal health information in the transcription output.</p>"
504509
}
505510
},
506511
"documentation":"<p>Settings specific to the Amazon Transcribe Medical engine.</p>"
@@ -528,6 +533,30 @@
528533
"Region":{
529534
"shape":"TranscribeRegion",
530535
"documentation":"<p>The AWS Region passed to Amazon Transcribe. If you don't specify a Region, Amazon Chime uses the meeting's Region.</p>"
536+
},
537+
"EnablePartialResultsStabilization":{
538+
"shape":"Boolean",
539+
"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>"
540+
},
541+
"PartialResultsStability":{
542+
"shape":"TranscribePartialResultsStability",
543+
"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>"
544+
},
545+
"ContentIdentificationType":{
546+
"shape":"TranscribeContentIdentificationType",
547+
"documentation":"<p>Set this field to <code>PII</code> to identify personal health information in the transcription output.</p>"
548+
},
549+
"ContentRedactionType":{
550+
"shape":"TranscribeContentRedactionType",
551+
"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> <p>You can’t set both <code>ContentRedactionType</code> and <code>ContentIdentificationType</code> in the same request. If you set both, your request returns a <code>BadRequestException</code>.</p>"
552+
},
553+
"PiiEntityTypes":{
554+
"shape":"TranscribePiiEntityTypes",
555+
"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>"
556+
},
557+
"LanguageModelName":{
558+
"shape":"TranscribeLanguageModelName",
559+
"documentation":"<p>The name of the language model used during transcription.</p>"
531560
}
532561
},
533562
"documentation":"<p>Settings specific to the Amazon Transcribe engine.</p>"
@@ -833,6 +862,14 @@
833862
"type":"string",
834863
"max":4096
835864
},
865+
"TranscribeContentIdentificationType":{
866+
"type":"string",
867+
"enum":["PII"]
868+
},
869+
"TranscribeContentRedactionType":{
870+
"type":"string",
871+
"enum":["PII"]
872+
},
836873
"TranscribeLanguageCode":{
837874
"type":"string",
838875
"enum":[
@@ -850,6 +887,16 @@
850887
"zh-CN"
851888
]
852889
},
890+
"TranscribeLanguageModelName":{
891+
"type":"string",
892+
"max":200,
893+
"min":1,
894+
"pattern":"^[0-9a-zA-Z._-]+"
895+
},
896+
"TranscribeMedicalContentIdentificationType":{
897+
"type":"string",
898+
"enum":["PHI"]
899+
},
853900
"TranscribeMedicalLanguageCode":{
854901
"type":"string",
855902
"enum":["en-US"]
@@ -884,6 +931,20 @@
884931
"DICTATION"
885932
]
886933
},
934+
"TranscribePartialResultsStability":{
935+
"type":"string",
936+
"enum":[
937+
"low",
938+
"medium",
939+
"high"
940+
]
941+
},
942+
"TranscribePiiEntityTypes":{
943+
"type":"string",
944+
"max":300,
945+
"min":1,
946+
"pattern":"^[A-Z_, ]+"
947+
},
887948
"TranscribeRegion":{
888949
"type":"string",
889950
"enum":[
@@ -952,5 +1013,5 @@
9521013
"exception":true
9531014
}
9541015
},
955-
"documentation":"<p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and receive meeting notifications. For more information about the meeting APIs, see <a href=\"http://amazonaws.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_meetings\">Amazon Chime SDK meetings</a>.</p>"
1016+
"documentation":"<p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and receive meeting notifications.</p>"
9561017
}

0 commit comments

Comments
 (0)