aws-sdk-transcribestreamingservice 1.85.0 → 1.87.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transcribestreamingservice/async_client.rb +16 -19
- data/lib/aws-sdk-transcribestreamingservice/client.rb +11 -13
- data/lib/aws-sdk-transcribestreamingservice/client_api.rb +11 -0
- data/lib/aws-sdk-transcribestreamingservice/event_streams.rb +4 -0
- data/lib/aws-sdk-transcribestreamingservice/types.rb +45 -1
- data/lib/aws-sdk-transcribestreamingservice.rb +1 -1
- data/sig/types.rbs +12 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b53ce981f52482ea0c5120239ca0a0e6fa776132db5161f9f22a7883d6b91744
|
4
|
+
data.tar.gz: bb5ac8004ed5aa286bed41b4e566d06321c641017d70c216ca8346facd58e6dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1799f32001b29aac990bf66fb780177386ccb1c534f29dbdc34923b92b454301b14a87a73ffa8dbd8faacda85dc7d3a5171ea70bd8dd54335fdbef91b866c326
|
7
|
+
data.tar.gz: 6eb08c1e8151855920e4e3e3a6157d9f120674b327987b425f166a25e7ca1a230d3be952f0b0f0e3f1b135fe22c46b7be419e4a65634e4cdb4a2234f1dc70945
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.87.0 (2025-08-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS HealthScribe now supports specifying preferred patient pronouns through the MedicalScribeContext parameter for use in the generated clinical notes.
|
8
|
+
|
9
|
+
1.86.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.85.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.87.0
|
@@ -88,8 +88,8 @@ module Aws::TranscribeStreamingService
|
|
88
88
|
# class name or an instance of a plugin class.
|
89
89
|
#
|
90
90
|
# @option options [required, Aws::CredentialProvider] :credentials
|
91
|
-
# Your AWS credentials used for authentication. This can be
|
92
|
-
# following classes:
|
91
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
92
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
93
93
|
#
|
94
94
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
95
95
|
# credentials.
|
@@ -117,8 +117,7 @@ module Aws::TranscribeStreamingService
|
|
117
117
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
118
118
|
# from the Cognito Identity service.
|
119
119
|
#
|
120
|
-
# When `:credentials` are not configured directly, the following
|
121
|
-
# locations will be searched for credentials:
|
120
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
122
121
|
#
|
123
122
|
# * `Aws.config[:credentials]`
|
124
123
|
#
|
@@ -132,12 +131,10 @@ module Aws::TranscribeStreamingService
|
|
132
131
|
#
|
133
132
|
# * `~/.aws/config`
|
134
133
|
#
|
135
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
140
|
-
# to `true`.
|
134
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
135
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
136
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
137
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
141
138
|
#
|
142
139
|
# @option options [required, String] :region
|
143
140
|
# The AWS region to connect to. The configured `:region` is
|
@@ -337,8 +334,8 @@ module Aws::TranscribeStreamingService
|
|
337
334
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
338
335
|
#
|
339
336
|
# @option options [Aws::TokenProvider] :token_provider
|
340
|
-
# Your Bearer token used for authentication. This can be
|
341
|
-
# following classes:
|
337
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
338
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
342
339
|
#
|
343
340
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
344
341
|
# tokens.
|
@@ -859,12 +856,12 @@ module Aws::TranscribeStreamingService
|
|
859
856
|
#
|
860
857
|
# When you start a stream, you first specify the stream configuration in
|
861
858
|
# a `MedicalScribeConfigurationEvent`. This event includes channel
|
862
|
-
# definitions, encryption settings,
|
863
|
-
# such as the output configuration for
|
864
|
-
# clinical note generation. These are
|
865
|
-
# configurations beyond those provided in
|
866
|
-
# headers. Whether you are starting a new
|
867
|
-
# existing session, your first event must be a
|
859
|
+
# definitions, encryption settings, medical scribe context, and
|
860
|
+
# post-stream analytics settings, such as the output configuration for
|
861
|
+
# aggregated transcript and clinical note generation. These are
|
862
|
+
# additional streaming session configurations beyond those provided in
|
863
|
+
# your initial start request headers. Whether you are starting a new
|
864
|
+
# session or resuming an existing session, your first event must be a
|
868
865
|
# `MedicalScribeConfigurationEvent`.
|
869
866
|
#
|
870
867
|
# After you send a `MedicalScribeConfigurationEvent`, you start
|
@@ -2093,7 +2090,7 @@ module Aws::TranscribeStreamingService
|
|
2093
2090
|
tracer: tracer
|
2094
2091
|
)
|
2095
2092
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
2096
|
-
context[:gem_version] = '1.
|
2093
|
+
context[:gem_version] = '1.87.0'
|
2097
2094
|
Seahorse::Client::Request.new(handlers, context)
|
2098
2095
|
end
|
2099
2096
|
|
@@ -97,8 +97,8 @@ module Aws::TranscribeStreamingService
|
|
97
97
|
# class name or an instance of a plugin class.
|
98
98
|
#
|
99
99
|
# @option options [required, Aws::CredentialProvider] :credentials
|
100
|
-
# Your AWS credentials used for authentication. This can be
|
101
|
-
# following classes:
|
100
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
101
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
102
102
|
#
|
103
103
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
104
104
|
# credentials.
|
@@ -126,8 +126,7 @@ module Aws::TranscribeStreamingService
|
|
126
126
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
127
127
|
# from the Cognito Identity service.
|
128
128
|
#
|
129
|
-
# When `:credentials` are not configured directly, the following
|
130
|
-
# locations will be searched for credentials:
|
129
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
131
130
|
#
|
132
131
|
# * `Aws.config[:credentials]`
|
133
132
|
#
|
@@ -141,12 +140,10 @@ module Aws::TranscribeStreamingService
|
|
141
140
|
#
|
142
141
|
# * `~/.aws/config`
|
143
142
|
#
|
144
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
145
|
-
#
|
146
|
-
#
|
147
|
-
#
|
148
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
149
|
-
# to `true`.
|
143
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
144
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
145
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
146
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
150
147
|
#
|
151
148
|
# @option options [required, String] :region
|
152
149
|
# The AWS region to connect to. The configured `:region` is
|
@@ -388,8 +385,8 @@ module Aws::TranscribeStreamingService
|
|
388
385
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
389
386
|
#
|
390
387
|
# @option options [Aws::TokenProvider] :token_provider
|
391
|
-
# Your Bearer token used for authentication. This can be
|
392
|
-
# following classes:
|
388
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
389
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
393
390
|
#
|
394
391
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
395
392
|
# tokens.
|
@@ -535,6 +532,7 @@ module Aws::TranscribeStreamingService
|
|
535
532
|
# resp.medical_scribe_stream_details.post_stream_analytics_result.clinical_note_generation_result.transcript_output_location #=> String
|
536
533
|
# resp.medical_scribe_stream_details.post_stream_analytics_result.clinical_note_generation_result.status #=> String, one of "IN_PROGRESS", "FAILED", "COMPLETED"
|
537
534
|
# resp.medical_scribe_stream_details.post_stream_analytics_result.clinical_note_generation_result.failure_reason #=> String
|
535
|
+
# resp.medical_scribe_stream_details.medical_scribe_context_provided #=> Boolean
|
538
536
|
#
|
539
537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-streaming-2017-10-26/GetMedicalScribeStream AWS API Documentation
|
540
538
|
#
|
@@ -563,7 +561,7 @@ module Aws::TranscribeStreamingService
|
|
563
561
|
tracer: tracer
|
564
562
|
)
|
565
563
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
566
|
-
context[:gem_version] = '1.
|
564
|
+
context[:gem_version] = '1.87.0'
|
567
565
|
Seahorse::Client::Request.new(handlers, context)
|
568
566
|
end
|
569
567
|
|
@@ -81,6 +81,7 @@ module Aws::TranscribeStreamingService
|
|
81
81
|
MedicalScribeChannelDefinitions = Shapes::ListShape.new(name: 'MedicalScribeChannelDefinitions')
|
82
82
|
MedicalScribeChannelId = Shapes::IntegerShape.new(name: 'MedicalScribeChannelId')
|
83
83
|
MedicalScribeConfigurationEvent = Shapes::StructureShape.new(name: 'MedicalScribeConfigurationEvent')
|
84
|
+
MedicalScribeContext = Shapes::StructureShape.new(name: 'MedicalScribeContext')
|
84
85
|
MedicalScribeEncryptionSettings = Shapes::StructureShape.new(name: 'MedicalScribeEncryptionSettings')
|
85
86
|
MedicalScribeInputStream = Shapes::StructureShape.new(name: 'MedicalScribeInputStream')
|
86
87
|
MedicalScribeLanguageCode = Shapes::StringShape.new(name: 'MedicalScribeLanguageCode')
|
@@ -88,6 +89,7 @@ module Aws::TranscribeStreamingService
|
|
88
89
|
MedicalScribeMediaSampleRateHertz = Shapes::IntegerShape.new(name: 'MedicalScribeMediaSampleRateHertz')
|
89
90
|
MedicalScribeNoteTemplate = Shapes::StringShape.new(name: 'MedicalScribeNoteTemplate')
|
90
91
|
MedicalScribeParticipantRole = Shapes::StringShape.new(name: 'MedicalScribeParticipantRole')
|
92
|
+
MedicalScribePatientContext = Shapes::StructureShape.new(name: 'MedicalScribePatientContext')
|
91
93
|
MedicalScribePostStreamAnalyticsResult = Shapes::StructureShape.new(name: 'MedicalScribePostStreamAnalyticsResult')
|
92
94
|
MedicalScribePostStreamAnalyticsSettings = Shapes::StructureShape.new(name: 'MedicalScribePostStreamAnalyticsSettings')
|
93
95
|
MedicalScribeResultStream = Shapes::StructureShape.new(name: 'MedicalScribeResultStream')
|
@@ -113,6 +115,7 @@ module Aws::TranscribeStreamingService
|
|
113
115
|
PiiEntityTypes = Shapes::StringShape.new(name: 'PiiEntityTypes')
|
114
116
|
PointsOfInterest = Shapes::StructureShape.new(name: 'PointsOfInterest')
|
115
117
|
PostCallAnalyticsSettings = Shapes::StructureShape.new(name: 'PostCallAnalyticsSettings')
|
118
|
+
Pronouns = Shapes::StringShape.new(name: 'Pronouns')
|
116
119
|
RequestId = Shapes::StringShape.new(name: 'RequestId')
|
117
120
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
118
121
|
Result = Shapes::StructureShape.new(name: 'Result')
|
@@ -327,8 +330,12 @@ module Aws::TranscribeStreamingService
|
|
327
330
|
MedicalScribeConfigurationEvent.add_member(:channel_definitions, Shapes::ShapeRef.new(shape: MedicalScribeChannelDefinitions, location_name: "ChannelDefinitions"))
|
328
331
|
MedicalScribeConfigurationEvent.add_member(:encryption_settings, Shapes::ShapeRef.new(shape: MedicalScribeEncryptionSettings, location_name: "EncryptionSettings"))
|
329
332
|
MedicalScribeConfigurationEvent.add_member(:post_stream_analytics_settings, Shapes::ShapeRef.new(shape: MedicalScribePostStreamAnalyticsSettings, required: true, location_name: "PostStreamAnalyticsSettings"))
|
333
|
+
MedicalScribeConfigurationEvent.add_member(:medical_scribe_context, Shapes::ShapeRef.new(shape: MedicalScribeContext, location_name: "MedicalScribeContext"))
|
330
334
|
MedicalScribeConfigurationEvent.struct_class = Types::MedicalScribeConfigurationEvent
|
331
335
|
|
336
|
+
MedicalScribeContext.add_member(:patient_context, Shapes::ShapeRef.new(shape: MedicalScribePatientContext, location_name: "PatientContext"))
|
337
|
+
MedicalScribeContext.struct_class = Types::MedicalScribeContext
|
338
|
+
|
332
339
|
MedicalScribeEncryptionSettings.add_member(:kms_encryption_context, Shapes::ShapeRef.new(shape: KMSEncryptionContextMap, location_name: "KmsEncryptionContext"))
|
333
340
|
MedicalScribeEncryptionSettings.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KMSKeyId, required: true, location_name: "KmsKeyId"))
|
334
341
|
MedicalScribeEncryptionSettings.struct_class = Types::MedicalScribeEncryptionSettings
|
@@ -338,6 +345,9 @@ module Aws::TranscribeStreamingService
|
|
338
345
|
MedicalScribeInputStream.add_member(:configuration_event, Shapes::ShapeRef.new(shape: MedicalScribeConfigurationEvent, event: true, location_name: "ConfigurationEvent"))
|
339
346
|
MedicalScribeInputStream.struct_class = Types::MedicalScribeInputStream
|
340
347
|
|
348
|
+
MedicalScribePatientContext.add_member(:pronouns, Shapes::ShapeRef.new(shape: Pronouns, location_name: "Pronouns"))
|
349
|
+
MedicalScribePatientContext.struct_class = Types::MedicalScribePatientContext
|
350
|
+
|
341
351
|
MedicalScribePostStreamAnalyticsResult.add_member(:clinical_note_generation_result, Shapes::ShapeRef.new(shape: ClinicalNoteGenerationResult, location_name: "ClinicalNoteGenerationResult"))
|
342
352
|
MedicalScribePostStreamAnalyticsResult.struct_class = Types::MedicalScribePostStreamAnalyticsResult
|
343
353
|
|
@@ -370,6 +380,7 @@ module Aws::TranscribeStreamingService
|
|
370
380
|
MedicalScribeStreamDetails.add_member(:stream_status, Shapes::ShapeRef.new(shape: MedicalScribeStreamStatus, location_name: "StreamStatus"))
|
371
381
|
MedicalScribeStreamDetails.add_member(:post_stream_analytics_settings, Shapes::ShapeRef.new(shape: MedicalScribePostStreamAnalyticsSettings, location_name: "PostStreamAnalyticsSettings"))
|
372
382
|
MedicalScribeStreamDetails.add_member(:post_stream_analytics_result, Shapes::ShapeRef.new(shape: MedicalScribePostStreamAnalyticsResult, location_name: "PostStreamAnalyticsResult"))
|
383
|
+
MedicalScribeStreamDetails.add_member(:medical_scribe_context_provided, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "MedicalScribeContextProvided"))
|
373
384
|
MedicalScribeStreamDetails.struct_class = Types::MedicalScribeStreamDetails
|
374
385
|
|
375
386
|
MedicalScribeTranscriptEvent.add_member(:transcript_segment, Shapes::ShapeRef.new(shape: MedicalScribeTranscriptSegment, location_name: "TranscriptSegment"))
|
@@ -173,6 +173,10 @@ module Aws::TranscribeStreamingService
|
|
173
173
|
# @option params [Types::MedicalScribePostStreamAnalyticsSettings] :post_stream_analytics_settings
|
174
174
|
# Specify settings for post-stream analytics.
|
175
175
|
#
|
176
|
+
# @option params [Types::MedicalScribeContext] :medical_scribe_context
|
177
|
+
# The `MedicalScribeContext` object that contains contextual information
|
178
|
+
# used to generate customized clinical notes.
|
179
|
+
#
|
176
180
|
def signal_configuration_event_event(params = {})
|
177
181
|
@event_emitter.emit(:configuration_event, params)
|
178
182
|
end
|
@@ -947,6 +947,11 @@ module Aws::TranscribeStreamingService
|
|
947
947
|
# Specify settings for post-stream analytics.
|
948
948
|
# @return [Types::MedicalScribePostStreamAnalyticsSettings]
|
949
949
|
#
|
950
|
+
# @!attribute [rw] medical_scribe_context
|
951
|
+
# The `MedicalScribeContext` object that contains contextual
|
952
|
+
# information used to generate customized clinical notes.
|
953
|
+
# @return [Types::MedicalScribeContext]
|
954
|
+
#
|
950
955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-streaming-2017-10-26/MedicalScribeConfigurationEvent AWS API Documentation
|
951
956
|
#
|
952
957
|
class MedicalScribeConfigurationEvent < Struct.new(
|
@@ -957,11 +962,29 @@ module Aws::TranscribeStreamingService
|
|
957
962
|
:channel_definitions,
|
958
963
|
:encryption_settings,
|
959
964
|
:post_stream_analytics_settings,
|
965
|
+
:medical_scribe_context,
|
960
966
|
:event_type)
|
961
967
|
SENSITIVE = []
|
962
968
|
include Aws::Structure
|
963
969
|
end
|
964
970
|
|
971
|
+
# The `MedicalScribeContext` object that contains contextual information
|
972
|
+
# which is used during clinical note generation to add relevant context
|
973
|
+
# to the note.
|
974
|
+
#
|
975
|
+
# @!attribute [rw] patient_context
|
976
|
+
# Contains patient-specific information used to customize the clinical
|
977
|
+
# note generation.
|
978
|
+
# @return [Types::MedicalScribePatientContext]
|
979
|
+
#
|
980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-streaming-2017-10-26/MedicalScribeContext AWS API Documentation
|
981
|
+
#
|
982
|
+
class MedicalScribeContext < Struct.new(
|
983
|
+
:patient_context)
|
984
|
+
SENSITIVE = []
|
985
|
+
include Aws::Structure
|
986
|
+
end
|
987
|
+
|
965
988
|
# Contains encryption related settings to be used for data encryption
|
966
989
|
# with Key Management Service, including KmsEncryptionContext and
|
967
990
|
# KmsKeyId. The KmsKeyId is required, while KmsEncryptionContext is
|
@@ -1030,6 +1053,21 @@ module Aws::TranscribeStreamingService
|
|
1030
1053
|
include Aws::Structure
|
1031
1054
|
end
|
1032
1055
|
|
1056
|
+
# Contains patient-specific information.
|
1057
|
+
#
|
1058
|
+
# @!attribute [rw] pronouns
|
1059
|
+
# The patient's preferred pronouns that the user wants to provide as
|
1060
|
+
# a context for clinical note generation .
|
1061
|
+
# @return [String]
|
1062
|
+
#
|
1063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-streaming-2017-10-26/MedicalScribePatientContext AWS API Documentation
|
1064
|
+
#
|
1065
|
+
class MedicalScribePatientContext < Struct.new(
|
1066
|
+
:pronouns)
|
1067
|
+
SENSITIVE = [:pronouns]
|
1068
|
+
include Aws::Structure
|
1069
|
+
end
|
1070
|
+
|
1033
1071
|
# Contains details for the result of post-stream analytics.
|
1034
1072
|
#
|
1035
1073
|
# @!attribute [rw] clinical_note_generation_result
|
@@ -1181,6 +1219,11 @@ module Aws::TranscribeStreamingService
|
|
1181
1219
|
# session.
|
1182
1220
|
# @return [Types::MedicalScribePostStreamAnalyticsResult]
|
1183
1221
|
#
|
1222
|
+
# @!attribute [rw] medical_scribe_context_provided
|
1223
|
+
# Indicates whether the `MedicalScribeContext` object was provided
|
1224
|
+
# when the stream was started.
|
1225
|
+
# @return [Boolean]
|
1226
|
+
#
|
1184
1227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-streaming-2017-10-26/MedicalScribeStreamDetails AWS API Documentation
|
1185
1228
|
#
|
1186
1229
|
class MedicalScribeStreamDetails < Struct.new(
|
@@ -1198,7 +1241,8 @@ module Aws::TranscribeStreamingService
|
|
1198
1241
|
:encryption_settings,
|
1199
1242
|
:stream_status,
|
1200
1243
|
:post_stream_analytics_settings,
|
1201
|
-
:post_stream_analytics_result
|
1244
|
+
:post_stream_analytics_result,
|
1245
|
+
:medical_scribe_context_provided)
|
1202
1246
|
SENSITIVE = []
|
1203
1247
|
include Aws::Structure
|
1204
1248
|
end
|
@@ -56,7 +56,7 @@ module Aws::TranscribeStreamingService
|
|
56
56
|
autoload :AsyncClient, 'aws-sdk-transcribestreamingservice/async_client'
|
57
57
|
autoload :EventStreams, 'aws-sdk-transcribestreamingservice/event_streams'
|
58
58
|
|
59
|
-
GEM_VERSION = '1.
|
59
|
+
GEM_VERSION = '1.87.0'
|
60
60
|
|
61
61
|
end
|
62
62
|
|
data/sig/types.rbs
CHANGED
@@ -205,16 +205,27 @@ module Aws::TranscribeStreamingService
|
|
205
205
|
attr_accessor channel_definitions: ::Array[Types::MedicalScribeChannelDefinition]
|
206
206
|
attr_accessor encryption_settings: Types::MedicalScribeEncryptionSettings
|
207
207
|
attr_accessor post_stream_analytics_settings: Types::MedicalScribePostStreamAnalyticsSettings
|
208
|
+
attr_accessor medical_scribe_context: Types::MedicalScribeContext
|
208
209
|
attr_accessor event_type: untyped
|
209
210
|
SENSITIVE: []
|
210
211
|
end
|
211
212
|
|
213
|
+
class MedicalScribeContext
|
214
|
+
attr_accessor patient_context: Types::MedicalScribePatientContext
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
212
218
|
class MedicalScribeEncryptionSettings
|
213
219
|
attr_accessor kms_encryption_context: ::Hash[::String, ::String]
|
214
220
|
attr_accessor kms_key_id: ::String
|
215
221
|
SENSITIVE: []
|
216
222
|
end
|
217
223
|
|
224
|
+
class MedicalScribePatientContext
|
225
|
+
attr_accessor pronouns: ("HE_HIM" | "SHE_HER" | "THEY_THEM")
|
226
|
+
SENSITIVE: [:pronouns]
|
227
|
+
end
|
228
|
+
|
218
229
|
class MedicalScribePostStreamAnalyticsResult
|
219
230
|
attr_accessor clinical_note_generation_result: Types::ClinicalNoteGenerationResult
|
220
231
|
SENSITIVE: []
|
@@ -247,6 +258,7 @@ module Aws::TranscribeStreamingService
|
|
247
258
|
attr_accessor stream_status: ("IN_PROGRESS" | "PAUSED" | "FAILED" | "COMPLETED")
|
248
259
|
attr_accessor post_stream_analytics_settings: Types::MedicalScribePostStreamAnalyticsSettings
|
249
260
|
attr_accessor post_stream_analytics_result: Types::MedicalScribePostStreamAnalyticsResult
|
261
|
+
attr_accessor medical_scribe_context_provided: bool
|
250
262
|
SENSITIVE: []
|
251
263
|
end
|
252
264
|
|