diff --git a/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts b/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts index ec994dc7fbe2..e5b248a90e56 100644 --- a/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts @@ -75,6 +75,7 @@ export interface GetMedicalScribeStreamCommandOutput extends GetMedicalScribeStr * // PostStreamAnalyticsSettings: { // MedicalScribePostStreamAnalyticsSettings * // ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings * // OutputBucketName: "STRING_VALUE", // required + * // NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP", * // }, * // }, * // PostStreamAnalyticsResult: { // MedicalScribePostStreamAnalyticsResult diff --git a/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts b/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts index 7744cb70efa8..43753edf2db4 100644 --- a/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts @@ -118,6 +118,7 @@ export interface StartMedicalScribeStreamCommandOutput extends StartMedicalScrib * PostStreamAnalyticsSettings: { // MedicalScribePostStreamAnalyticsSettings * ClinicalNoteGenerationSettings: { // ClinicalNoteGenerationSettings * OutputBucketName: "STRING_VALUE", // required + * NoteTemplate: "HISTORY_AND_PHYSICAL" || "GIRPP", * }, * }, * }, diff --git a/clients/client-transcribe-streaming/src/models/models_0.ts b/clients/client-transcribe-streaming/src/models/models_0.ts index 8188ed60ed8b..9a8567b93f1d 100644 --- a/clients/client-transcribe-streaming/src/models/models_0.ts +++ b/clients/client-transcribe-streaming/src/models/models_0.ts @@ -1075,6 +1075,20 @@ export interface ClinicalNoteGenerationResult { FailureReason?: string | undefined; } +/** + * @public + * @enum + */ +export const MedicalScribeNoteTemplate = { + GIRPP: "GIRPP", + HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL", +} as const; + +/** + * @public + */ +export type MedicalScribeNoteTemplate = (typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate]; + /** *
The output configuration for aggregated transcript and clinical note generation.
* @public @@ -1092,6 +1106,21 @@ export interface ClinicalNoteGenerationSettings { * @public */ OutputBucketName: string | undefined; + + /** + *Specify one of the following templates to use for the clinical note summary. The default is HISTORY_AND_PHYSICAL
.
HISTORY_AND_PHYSICAL: Provides summaries for key sections of the clinical documentation. Sections include Chief Complaint, + * History of Present Illness, Review of Systems, Past Medical History, Assessment, and Plan.
+ *GIRPP: Provides summaries based on the patients progress toward goals. Sections include Goal, Intervention, Response, Progress, and Plan.
+ *The name of the Amazon S3 bucket where you want the output of Amazon Web Services HealthScribe post-stream analytics stored. Don't include the S3://
prefix of the specified bucket.
HealthScribe outputs transcript and clinical note files under the prefix:\n S3://$output-bucket-name/healthscribe-streaming/session-id/post-stream-analytics/clinical-notes
\n
The role ResourceAccessRoleArn
specified in the MedicalScribeConfigurationEvent
must have\n permission to use the specified location. You can change Amazon S3 permissions using the \n Amazon Web Services Management Console\n . See also Permissions Required for IAM User Roles .
Specify one of the following templates to use for the clinical note summary. The default is HISTORY_AND_PHYSICAL
.
HISTORY_AND_PHYSICAL: Provides summaries for key sections of the clinical documentation. Sections include Chief Complaint, \n History of Present Illness, Review of Systems, Past Medical History, Assessment, and Plan.
\nGIRPP: Provides summaries based on the patients progress toward goals. Sections include Goal, Intervention, Response, Progress, and Plan.
\n