Skip to content

Commit bd03227

Browse files
author
awstools
committed
feat(client-transcribe): AWS Healthscribe now supports new templates for the clinical note summary: BIRP, SIRP, DAP, BEHAVIORAL_SOAP, and PHYSICAL_SOAP
1 parent 0ab8f34 commit bd03227

File tree

4 files changed

+8249
-8199
lines changed

4 files changed

+8249
-8199
lines changed

clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export interface GetMedicalScribeJobCommandOutput extends GetMedicalScribeJobRes
7272
* // VocabularyFilterName: "STRING_VALUE",
7373
* // VocabularyFilterMethod: "remove" || "mask" || "tag",
7474
* // ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
75-
* // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
75+
* // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP" || "BIRP" || "SIRP" || "DAP" || "BEHAVIORAL_SOAP" || "PHYSICAL_SOAP",
7676
* // },
7777
* // },
7878
* // DataAccessRoleArn: "STRING_VALUE",

clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export interface StartMedicalScribeJobCommandOutput extends StartMedicalScribeJo
100100
* VocabularyFilterName: "STRING_VALUE",
101101
* VocabularyFilterMethod: "remove" || "mask" || "tag",
102102
* ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
103-
* NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
103+
* NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP" || "BIRP" || "SIRP" || "DAP" || "BEHAVIORAL_SOAP" || "PHYSICAL_SOAP",
104104
* },
105105
* },
106106
* ChannelDefinitions: [ // MedicalScribeChannelDefinitions
@@ -143,7 +143,7 @@ export interface StartMedicalScribeJobCommandOutput extends StartMedicalScribeJo
143143
* // VocabularyFilterName: "STRING_VALUE",
144144
* // VocabularyFilterMethod: "remove" || "mask" || "tag",
145145
* // ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings
146-
* // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP",
146+
* // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP" || "BIRP" || "SIRP" || "DAP" || "BEHAVIORAL_SOAP" || "PHYSICAL_SOAP",
147147
* // },
148148
* // },
149149
* // DataAccessRoleArn: "STRING_VALUE",

clients/client-transcribe/src/models/models_0.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1535,8 +1535,13 @@ export interface CategoryProperties {
15351535
* @enum
15361536
*/
15371537
export const MedicalScribeNoteTemplate = {
1538+
BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP",
1539+
BIRP: "BIRP",
1540+
DAP: "DAP",
15381541
GIRPP: "GIRPP",
15391542
HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL",
1543+
PHYSICAL_SOAP: "PHYSICAL_SOAP",
1544+
SIRP: "SIRP",
15401545
} as const;
15411546

15421547
/**
@@ -1560,6 +1565,21 @@ export interface ClinicalNoteGenerationSettings {
15601565
* <p>GIRPP: Provides summaries based on the patients progress toward goals. Examples of sections include Goal, Intervention,
15611566
* Response, Progress, and Plan.</p>
15621567
* </li>
1568+
* <li>
1569+
* <p>BIRP: Focuses on the patient's behavioral patterns and responses. Examples of sections include Behavior, Intervention, Response, and Plan.</p>
1570+
* </li>
1571+
* <li>
1572+
* <p>SIRP: Emphasizes the situational context of therapy. Examples of sections include Situation, Intervention, Response, and Plan.</p>
1573+
* </li>
1574+
* <li>
1575+
* <p>DAP: Provides a simplified format for clinical documentation. Examples of sections include Data, Assessment, and Plan.</p>
1576+
* </li>
1577+
* <li>
1578+
* <p>BEHAVIORAL_SOAP: Behavioral health focused documentation format. Examples of sections include Subjective, Objective, Assessment, and Plan.</p>
1579+
* </li>
1580+
* <li>
1581+
* <p>PHYSICAL_SOAP: Physical health focused documentation format. Examples of sections include Subjective, Objective, Assessment, and Plan.</p>
1582+
* </li>
15631583
* </ul>
15641584
* @public
15651585
*/

0 commit comments

Comments
 (0)